diff options
Diffstat (limited to 'win/rfb_win32/LaunchProcess.h')
-rw-r--r-- | win/rfb_win32/LaunchProcess.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/win/rfb_win32/LaunchProcess.h b/win/rfb_win32/LaunchProcess.h index 73213786..dc74682a 100644 --- a/win/rfb_win32/LaunchProcess.h +++ b/win/rfb_win32/LaunchProcess.h @@ -25,7 +25,8 @@ #define __RFB_WIN32_LAUNCHPROCESS_H__ #include <windows.h> -#include <rfb_win32/TCharArray.h> + +#include <rfb/util.h> namespace rfb { @@ -33,7 +34,7 @@ namespace rfb { class LaunchProcess { public: - LaunchProcess(const TCHAR* exeName_, const TCHAR* params); + LaunchProcess(const char* exeName_, const char* params); ~LaunchProcess(); // start() starts the specified process with the supplied @@ -59,8 +60,8 @@ namespace rfb { PROCESS_INFORMATION procInfo; DWORD returnCode; protected: - TCharArray exeName; - TCharArray params; + CharArray exeName; + CharArray params; }; |