Changeset 8911 for trunk/src/peldr/pe.cpp
- Timestamp:
- Jul 23, 2002, 3:26:10 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/peldr/pe.cpp
r7991 r8911 1 /* $Id: pe.cpp,v 1.3 3 2002-02-23 10:48:19sandervl Exp $ */1 /* $Id: pe.cpp,v 1.34 2002-07-23 13:26:10 sandervl Exp $ */ 2 2 3 3 /* … … 70 70 71 71 //should be the same as in ..\kernel32\winexepeldr.h 72 typedef BOOL (* WIN32API WIN32CTOR)(char *, char *, char *, ULONG, BOOL, BOOL);72 typedef BOOL (* WIN32API WIN32CTOR)(char *, char *, char *, ULONG, ULONG, BOOL, BOOL); 73 73 74 74 WIN32CTOR CreateWin32Exe = 0; … … 258 258 goto fail; 259 259 } 260 rc = DosQueryProcAddr(hmodKernel32, 0, "_CreateWin32PeLdrExe@2 4", (PFN *)&CreateWin32Exe);260 rc = DosQueryProcAddr(hmodKernel32, 0, "_CreateWin32PeLdrExe@28", (PFN *)&CreateWin32Exe); 261 261 262 262 #ifdef COMMAND_LINE_VERSION … … 265 265 fVioConsole = FALSE; 266 266 #endif 267 if(CreateWin32Exe(exeName, win32cmdline, peoptions, reservedMemory, fConsoleApp, fVioConsole) == FALSE) {267 if(CreateWin32Exe(exeName, win32cmdline, peoptions, reservedMemory, 0, fConsoleApp, fVioConsole) == FALSE) { 268 268 goto fail; 269 269 }
Note:
See TracChangeset
for help on using the changeset viewer.