Changeset 3993 for trunk/src/kernel32/windllbase.h
- Timestamp:
- Aug 11, 2000, 12:56:27 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/windllbase.h
r3854 r3993 1 /* $Id: windllbase.h,v 1. 4 2000-07-18 18:37:29sandervl Exp $ */1 /* $Id: windllbase.h,v 1.5 2000-08-11 10:56:18 sandervl Exp $ */ 2 2 3 3 /* … … 86 86 BOOL RemoveCircularDependency(Win32DllBase *parent); 87 87 88 // Loaded by DosLoadModule89 virtual void setLoadLibrary() { fLoadLibrary = TRUE; };90 91 // isLoaded returns TRUE when a dll has been loaded with DosLoadModule92 virtual BOOL isLoaded() { return fLoadLibrary; };93 94 //Should only be called to make sure DosLoadModule is called at least95 //once for a dll (to make sure OS/2 doesn't unload the dll when it's96 //still needed)97 virtual void loadLibrary();98 99 88 //Only called for kernel32 100 89 void DisableUnload() { fDisableUnload = TRUE; }; … … 138 127 139 128 //This flag is set when a dll has been loaded with DosLoadModule 140 BOOL fLoadLibrary;141 129 BOOL fDisableUnload; 142 130 131 static Win32DllBase *head; 132 Win32DllBase *next; 143 133 private: 144 134 static Queue loadLibDlls; 145 static Win32DllBase *head;146 Win32DllBase *next;147 135 }; 148 136
Note:
See TracChangeset
for help on using the changeset viewer.