Changeset 678 for trunk/src/kernel32/mmap.h
- Timestamp:
- Aug 25, 1999, 12:28:41 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/mmap.h
r664 r678 1 /* $Id: mmap.h,v 1. 6 1999-08-24 18:46:40sandervl Exp $ */1 /* $Id: mmap.h,v 1.7 1999-08-25 10:28:41 sandervl Exp $ */ 2 2 3 3 /* … … 37 37 void Release() { if(--referenced == 0) delete this; }; 38 38 39 BOOL hasReadAccess(); 40 BOOL hasWriteAccess(); 41 BOOL hasExecuteAccess(); 42 43 BOOL commitPage(LPVOID lpPageFaultAddr, ULONG nrpages); 44 39 45 static Win32MemMap *findMap(LPSTR lpszName); 40 46 static Win32MemMap *findMap(ULONG address); 47 48 //Should only be called in ExitProcess 49 static void deleteAll(); 41 50 42 51 protected:
Note:
See TracChangeset
for help on using the changeset viewer.