Changeset 14812
- Timestamp:
- Sep 12, 2000, 9:02:00 PM (25 years ago)
- Location:
- tags/trunk/src/kernel32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tags/trunk/src/kernel32/winexebase.cpp ¶
r14804 r14812 1 /* $Id: winexebase.cpp,v 1.1 0 2000-09-12 04:29:58 birdExp $ */1 /* $Id: winexebase.cpp,v 1.11 2000-09-12 19:01:59 sandervl Exp $ */ 2 2 3 3 /* … … 50 50 Win32ExeBase::Win32ExeBase(HINSTANCE hInstance) 51 51 : Win32ImageBase(hInstance), 52 fConsoleApp(FALSE), 53 cmdLineA(NULL), cmdLineW(NULL) 52 fConsoleApp(FALSE) 54 53 { 55 54 WinExe = this; … … 90 89 91 90 WinExe = NULL; 92 if(cmdLineA)93 free(cmdLineA);94 if(cmdLineW)95 free(cmdLineW);96 91 } 97 92 //****************************************************************************** -
TabularUnified tags/trunk/src/kernel32/winexebase.h ¶
r14804 r14812 1 /* $Id: winexebase.h,v 1. 2 2000-09-12 04:29:58 birdExp $ */1 /* $Id: winexebase.h,v 1.3 2000-09-12 19:01:59 sandervl Exp $ */ 2 2 3 3 /* … … 31 31 32 32 protected: 33 LPSTR cmdLineA;34 LPWSTR cmdLineW;35 33 BOOL fConsoleApp; 36 34 -
TabularUnified tags/trunk/src/kernel32/winexelx.cpp ¶
r14804 r14812 1 /* $Id: winexelx.cpp,v 1. 7 2000-09-12 04:29:58 birdExp $ */1 /* $Id: winexelx.cpp,v 1.8 2000-09-12 19:02:00 sandervl Exp $ */ 2 2 3 3 /* … … 25 25 #include <winexelx.h> 26 26 #include <winconst.h> 27 #include <win32api.h> 27 28 #include <wprocess.h> 28 29 #include <odinlx.h> … … 116 117 117 118 SetWin32TIB(); 118 rc = ((WINMAIN)entryPoint)(hinstance, 0, cmdLineA, SW_SHOWNORMAL_W);119 rc = ((WINMAIN)entryPoint)(hinstance, 0, (LPSTR)GetCommandLineA(), SW_SHOWNORMAL_W); 119 120 RestoreOS2TIB(); 120 121
Note:
See TracChangeset
for help on using the changeset viewer.