Changeset 21916 for trunk/src/kernel32/wprocess.cpp
- Timestamp:
- Dec 18, 2011, 10:28:22 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 bin 2 Makefile.inc 1 env.cmd 2 LocalConfig.kmk
-
-
Property svn:mergeinfo
set to
/branches/gcc-kmk merged eligible
- Property svn:ignore
-
trunk/src/kernel32/wprocess.cpp
r21673 r21916 52 52 #include "shellapi.h" 53 53 54 #include <win \ntddk.h>55 #include <win \psapi.h>54 #include <win/ntddk.h> 55 #include <win/psapi.h> 56 56 57 57 #include <custombuild.h> … … 109 109 PFNLXDLLLOAD pfnLxDllLoadCallback = NULL; 110 110 111 extern "C" { 111 112 112 113 //****************************************************************************** … … 299 300 StartupInfo.cbReserved2 = NULL; 300 301 if (!StartupInfo.lpDesktop) 301 StartupInfo.lpDesktop = "Desktop";302 StartupInfo.lpDesktop = (LPSTR)"Desktop"; 302 303 if (!StartupInfo.lpTitle) 303 StartupInfo.lpTitle = "Title";304 StartupInfo.lpTitle = (LPSTR)"Title"; 304 305 ProcessENVDB.hStdin = StartupInfo.hStdInput = GetStdHandle(STD_INPUT_HANDLE); 305 306 ProcessENVDB.hStdout = StartupInfo.hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE); … … 2987 2988 2988 2989 lpmodinfo->SizeOfImage = winmod->getImageSize(); 2989 lpmodinfo->EntryPoint = winmod->getEntryPoint();2990 lpmodinfo->EntryPoint = (LPVOID)winmod->getEntryPoint(); 2990 2991 lpmodinfo->lpBaseOfDll = (void*)hModule; 2991 2992 … … 3058 3059 } 3059 3060 3061 } // extern "C" 3062
Note:
See TracChangeset
for help on using the changeset viewer.