Changeset 678 for trunk/src/kernel32/hmdevice.h
- Timestamp:
- Aug 25, 1999, 12:28:41 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/hmdevice.h
r673 r678 1 /* $Id: hmdevice.h,v 1. 6 1999-08-25 08:55:18 phallerExp $ */1 /* $Id: hmdevice.h,v 1.7 1999-08-25 10:28:40 sandervl Exp $ */ 2 2 3 3 /* … … 25 25 *****************************************************************************/ 26 26 27 #define HMTYPE_UNKNOWN 28 #define HMTYPE_MEMMAP 27 #define HMTYPE_UNKNOWN 0 28 #define HMTYPE_MEMMAP 1 29 29 //..... 30 30 … … 232 232 ***************************************************************************/ 233 233 234 /* this is a handler method for calls to CreateSemaphore() */234 /* this is a handler method for calls to CreateSemaphore() */ 235 235 virtual DWORD CreateSemaphore (PHMHANDLEDATA pHMHandleData, 236 236 LPSECURITY_ATTRIBUTES lpsa, … … 239 239 LPCSTR lpszSemaphoreName); 240 240 241 /* this is a handler method for calls to OpenSemaphore() */241 /* this is a handler method for calls to OpenSemaphore() */ 242 242 virtual DWORD OpenSemaphore (PHMHANDLEDATA pHMHandleData, 243 243 BOOL fInheritHandle, 244 244 LPCSTR lpszSemaphoreName); 245 245 246 /* this is a handle method for calls to ReleaseSemaphore() */246 /* this is a handle method for calls to ReleaseSemaphore() */ 247 247 virtual BOOL ReleaseSemaphore(PHMHANDLEDATA pHMHandleData, 248 248 LONG cReleaseCount, … … 260 260 /* this is a handler method for calls to OpenFileMapping() */ 261 261 virtual DWORD OpenFileMapping (PHMHANDLEDATA pHMHandleData, 262 262 DWORD access, /* [in] Access mode */ 263 263 BOOL fInherit, 264 264 LPCSTR lpName); 265 265 266 /* this is a handler method for calls to MapViewOfFile() */ 267 virtual LPVOID MapViewOfFile (PHMHANDLEDATA pHMHandleData, 268 DWORD dwDesiredAccess, 269 DWORD dwFileOffsetHigh, 270 DWORD dwFileOffsetLow, 271 DWORD dwNumberOfBytesToMap); 272 273 /* this is a handler method for calls to MapViewOfFileEx() */ 266 /* this is a handler method for calls to MapViewOfFileEx() */ 274 267 virtual LPVOID MapViewOfFileEx (PHMHANDLEDATA pHMHandleData, 275 268 DWORD dwDesiredAccess, … … 277 270 DWORD dwFileOffsetLow, 278 271 DWORD dwNumberOfBytesToMap, 279 LPVOID lpBaseAddress); 280 281 /* this is a handler method for calls to UnmapViewOfFile() */ 282 virtual BOOL UnmapViewOfFile (PHMHANDLEDATA pHMHandleData, 283 LPVOID lpBaseAddress); 284 285 /* this is a handler method for calls to FlushViewOfFile() */ 286 virtual BOOL FlushViewOfFile (PHMHANDLEDATA pHMHandleData, 287 LPVOID lpBaseAddress, 288 DWORD dwNumberOfBytesToFlush); 272 LPVOID lpBaseAddress); 289 273 290 274 };
Note:
See TracChangeset
for help on using the changeset viewer.