Changeset 651 for trunk/include
- Timestamp:
- Aug 23, 1999, 7:04:14 PM (26 years ago)
- Location:
- trunk/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/windll.h
r550 r651 1 /* $Id: windll.h,v 1. 5 1999-08-18 17:16:05sandervl Exp $ */1 /* $Id: windll.h,v 1.6 1999-08-23 17:04:14 sandervl Exp $ */ 2 2 3 3 /* … … 36 36 public: 37 37 Win32Dll(HINSTANCE hinstance, int NameTableId, int Win32TableId, WIN32DLLENTRY DllEntryPoint); 38 Win32Dll(char *szDllName );38 Win32Dll(char *szDllName, Win32Image *parentImage = NULL); 39 39 ~Win32Dll(); 40 40 … … 80 80 static Win32Dll *findModule(WIN32DLLENTRY DllEntryPoint); 81 81 82 83 virtual BOOL isDll() { return FALSE; }; 84 82 85 protected: 83 BOOL fSystemDll, fSkipEntryCalls, fUnloaded ;86 BOOL fSystemDll, fSkipEntryCalls, fUnloaded, fAttachedToProcess; 84 87 85 88 WIN32DLLENTRY dllEntryPoint; -
trunk/include/winexe.h
r642 r651 1 /* $Id: winexe.h,v 1. 4 1999-08-22 22:56:48sandervl Exp $ */1 /* $Id: winexe.h,v 1.5 1999-08-23 17:04:14 sandervl Exp $ */ 2 2 3 3 /* … … 36 36 37 37 virtual ULONG start(); 38 39 virtual BOOL isDll() { return FALSE; }; 38 40 39 41 protected: -
trunk/include/winimage.h
r622 r651 1 /* $Id: winimage.h,v 1. 9 1999-08-22 14:25:13sandervl Exp $ */1 /* $Id: winimage.h,v 1.10 1999-08-23 17:04:14 sandervl Exp $ */ 2 2 3 3 /* … … 157 157 void tlsDetachThread(); //destroy TLS structures 158 158 159 virtual BOOL isDll() = 0; 160 159 161 protected: 160 162 void tlsAlloc(); //Allocate TLS index for this module
Note:
See TracChangeset
for help on using the changeset viewer.