Changeset 3854 for trunk/src/kernel32/windllbase.h
- Timestamp:
- Jul 18, 2000, 8:37:30 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/windllbase.h
r3704 r3854 1 /* $Id: windllbase.h,v 1. 3 2000-06-14 02:27:33 phallerExp $ */1 /* $Id: windllbase.h,v 1.4 2000-07-18 18:37:29 sandervl Exp $ */ 2 2 3 3 /* … … 50 50 51 51 char *getName() { return szModule; }; 52 void setNoEntryCalls() { fSkipEntryCalls = TRUE; }; 52 53 //do not call the ATTACH_THREAD, DETACH_THREAD functions 54 void disableThreadLibraryCalls() { fSkipThreadEntryCalls = TRUE; }; 53 55 54 56 Win32DllBase *getNext() { return next; }; … … 71 73 BOOL attachThread(); 72 74 BOOL detachThread(); 73 74 // enable / disable thread attach/detach calls75 void setThreadLibraryCalls(BOOL fEnable);76 75 77 76 //This counter is incremented when the dll has been loaded with LoadLibrary(Ex) … … 126 125 #endif 127 126 128 BOOL fSkip EntryCalls, fUnloaded, fAttachedToProcess;127 BOOL fSkipThreadEntryCalls, fUnloaded, fAttachedToProcess; 129 128 130 129 WIN32DLLENTRY dllEntryPoint;
Note:
See TracChangeset
for help on using the changeset viewer.