Changeset 978 for trunk/src/kernel32/windlllx.cpp
- Timestamp:
- Sep 18, 1999, 7:47:10 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/windlllx.cpp
r956 r978 1 /* $Id: windlllx.cpp,v 1. 1 1999-09-15 23:39:07sandervl Exp $ */1 /* $Id: windlllx.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 RegisterLxDll(HINSTANCE hInstance, WIN32DLLENTRY EntryPoint, PVOID unused) 38 BOOL WIN32API RegisterLxDll(HINSTANCE hInstance, WIN32DLLENTRY EntryPoint, 39 PVOID pResData) 39 40 { 40 41 Win32LxDll *windll; … … 46 47 return FALSE; 47 48 } 48 windll = new Win32LxDll(hInstance, EntryPoint );49 windll = new Win32LxDll(hInstance, EntryPoint, pResData); 49 50 if(windll == NULL) { 50 51 dprintf(("RegisterLxDll: windll == NULL!!!")); … … 58 59 BOOL WIN32API UnregisterLxDll(HINSTANCE hInstance) 59 60 { 61 #if 1 62 return TRUE; 63 #else 60 64 Win32LxDll *windll; 61 65 … … 68 72 delete windll; 69 73 return TRUE; 74 #endif 70 75 } 71 76 //****************************************************************************** 72 77 //****************************************************************************** 73 Win32LxDll::Win32LxDll(HINSTANCE hInstance, WIN32DLLENTRY EntryPoint )78 Win32LxDll::Win32LxDll(HINSTANCE hInstance, WIN32DLLENTRY EntryPoint, PVOID pResData) 74 79 : Win32ImageBase(hInstance), 75 Win32LxImage(hInstance ),80 Win32LxImage(hInstance, pResData), 76 81 Win32DllBase(hInstance, EntryPoint) 77 82 {
Note:
See TracChangeset
for help on using the changeset viewer.