Changeset 978 for trunk/src/kernel32/winexelx.cpp
- Timestamp:
- Sep 18, 1999, 7:47:10 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/winexelx.cpp
r956 r978 1 /* $Id: winexelx.cpp,v 1. 1 1999-09-15 23:39:07sandervl Exp $ */1 /* $Id: winexelx.cpp,v 1.2 1999-09-18 17:47:10 sandervl Exp $ */ 2 2 3 3 /* … … 36 36 //System dlls set EntryPoint to 0 37 37 //****************************************************************************** 38 BOOL WIN32API RegisterLxExe(WINMAIN EntryPoint, PVOID unused)38 BOOL WIN32API RegisterLxExe(WINMAIN EntryPoint, PVOID pResData) 39 39 { 40 40 APIRET rc; … … 56 56 Win32LxExe *winexe; 57 57 58 winexe = new Win32LxExe(ppib->pib_hmte );58 winexe = new Win32LxExe(ppib->pib_hmte, pResData); 59 59 60 60 if(winexe) { … … 72 72 //****************************************************************************** 73 73 //****************************************************************************** 74 Win32LxExe::Win32LxExe(HINSTANCE hInstance )74 Win32LxExe::Win32LxExe(HINSTANCE hInstance, PVOID pResData) 75 75 : Win32ImageBase(hInstance), 76 Win32LxImage(hInstance ),76 Win32LxImage(hInstance, pResData), 77 77 Win32ExeBase(hInstance) 78 78 {
Note:
See TracChangeset
for help on using the changeset viewer.