Changeset 1134 for trunk/src/kernel32/windllbase.cpp
- Timestamp:
- Oct 5, 1999, 12:25:02 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/windllbase.cpp
r956 r1134 1 /* $Id: windllbase.cpp,v 1. 1 1999-09-15 23:39:07 sandervlExp $ */1 /* $Id: windllbase.cpp,v 1.2 1999-10-04 22:25:02 phaller Exp $ */ 2 2 3 3 /* … … 38 38 //****************************************************************************** 39 39 //****************************************************************************** 40 Win32DllBase::Win32DllBase(HINSTANCE hinstance, WIN32DLLENTRY DllEntryPoint) 40 Win32DllBase::Win32DllBase(HINSTANCE hinstance, WIN32DLLENTRY DllEntryPoint) 41 41 : Win32ImageBase(hinstance), 42 referenced(0), fSkipEntryCalls(FALSE), 42 referenced(0), fSkipEntryCalls(FALSE), 43 43 fAttachedToProcess(FALSE), fUnloaded(FALSE) 44 44 { … … 60 60 dprintf(("Win32DllBase::~Win32DllBase %s", szModule)); 61 61 62 if(errorState == NO_ERROR && !fUnloaded) 62 if(errorState == NO_ERROR && !fUnloaded) 63 63 { 64 64 detachProcess(); … … 86 86 //****************************************************************************** 87 87 ULONG Win32DllBase::Release() 88 { 88 { 89 89 ULONG ret = --referenced; 90 90 … … 105 105 if(fAttachedToProcess) 106 106 return TRUE; 107 107 108 108 fAttachedToProcess = TRUE; 109 109 … … 341 341 //****************************************************************************** 342 342 //****************************************************************************** 343 void Win32DllBase::setThreadLibraryCalls(BOOL fEnable) 344 { 345 // if fEnable == true, do call the ATTACH_THREAD, DETACH_THREAD functions 346 // if fEnable == false, do not call the ATTACH_THREAD, DETACH_THREAD functions 347 fSkipEntryCalls = !fEnable; 348 } 349 350 //****************************************************************************** 351 //****************************************************************************** 343 352 Win32DllBase *Win32DllBase::head = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.