summaryrefslogtreecommitdiff
path: root/ace/Process.i
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-23 04:43:59 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-23 04:43:59 +0000
commitf40cc79fed36173f3588f26d7bec8ee7705dc153 (patch)
tree61d38d262d43ac77fc2ad94c9e7e850cd5607622 /ace/Process.i
parent2afe8d4640d7b30bfe959c16212ea87df8e6ec7c (diff)
downloadATCD-f40cc79fed36173f3588f26d7bec8ee7705dc153.tar.gz
ChangeLogTag:Sat Apr 22 20:53:11 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace/Process.i')
-rw-r--r--ace/Process.i20
1 files changed, 10 insertions, 10 deletions
diff --git a/ace/Process.i b/ace/Process.i
index 5948847109c..c4208b73298 100644
--- a/ace/Process.i
+++ b/ace/Process.i
@@ -101,7 +101,7 @@ ACE_Process_Options::setgroup (pid_t pgrp)
#if defined (ACE_WIN32)
-ACE_INLINE STARTUPINFO *
+ACE_INLINE ACE_TEXT_STARTUPINFO *
ACE_Process_Options::startup_info (void)
{
#if !defined (ACE_HAS_WINCE)
@@ -276,13 +276,13 @@ ACE_Process_Options::getegid (void)
}
#endif /* ACE_WIN32 */
-ACE_INLINE LPTSTR
+ACE_INLINE ACE_TCHAR *
ACE_Process_Options::command_line_buf (void)
{
return command_line_buf_;
}
-ACE_INLINE LPTSTR
+ACE_INLINE ACE_TCHAR *
ACE_Process_Options::working_directory (void)
{
#if !defined (ACE_HAS_WINCE)
@@ -296,7 +296,7 @@ ACE_Process_Options::working_directory (void)
}
ACE_INLINE void
-ACE_Process_Options::working_directory (LPCTSTR wd)
+ACE_Process_Options::working_directory (const ACE_TCHAR *wd)
{
#if !defined(ACE_HAS_WINCE)
ACE_OS::strcpy (working_directory_, wd);
@@ -306,12 +306,12 @@ ACE_Process_Options::working_directory (LPCTSTR wd)
}
ACE_INLINE void
-ACE_Process_Options::process_name (LPCTSTR p)
+ACE_Process_Options::process_name (const ACE_TCHAR *p)
{
ACE_OS::strcpy (this->process_name_, p);
}
-ACE_INLINE LPCTSTR
+ACE_INLINE const ACE_TCHAR *
ACE_Process_Options::process_name (void)
{
if (process_name_[0] == '\0')
@@ -325,21 +325,21 @@ ACE_Process_Options::process_name (void)
// under CE. They are not empty on most other platforms.
ACE_INLINE int
-ACE_Process_Options::setenv (LPTSTR envp[])
+ACE_Process_Options::setenv (ACE_TCHAR *envp[])
{
ACE_UNUSED_ARG (envp);
return -1;
}
ACE_INLINE int
-ACE_Process_Options::setenv (LPCTSTR format, ...)
+ACE_Process_Options::setenv (const ACE_TCHAR *format, ...)
{
return -1;
}
ACE_INLINE int
-ACE_Process_Options::setenv (LPCTSTR variable_name,
- LPCTSTR format,
+ACE_Process_Options::setenv (const ACE_TCHAR *variable_name,
+ const ACE_TCHAR *format,
...)
{
return -1;