Changeset 7549 for trunk/src/kernel32/hmnul.h
- Timestamp:
- Dec 5, 2001, 3:16:38 PM (24 years ago)
- File:
-
- 1 edited
-
trunk/src/kernel32/hmnul.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/hmnul.h
r7476 r7549 1 /* $Id: hmnul.h,v 1. 1 2001-11-29 00:20:48 phallerExp $ */1 /* $Id: hmnul.h,v 1.2 2001-12-05 14:16:03 sandervl Exp $ */ 2 2 3 3 /* … … 23 23 24 24 /* this is the handler method for calls to CreateFile() */ 25 virtual DWORD CreateFile (HANDLE hHandle, 26 LPCSTR lpFileName, 25 virtual DWORD CreateFile (LPCSTR lpFileName, 27 26 PHMHANDLEDATA pHMHandleData, 28 27 PVOID lpSecurityAttributes, … … 39 38 40 39 41 /* this is a handler method for calls to ReadFile()*/40 /* this is a handler method for calls to ReadFile/Ex */ 42 41 virtual BOOL ReadFile (PHMHANDLEDATA pHMHandleData, 43 42 LPCVOID lpBuffer, 44 43 DWORD nNumberOfBytesToRead, 45 44 LPDWORD lpNumberOfBytesRead, 46 LPOVERLAPPED lpOverlapped); 45 LPOVERLAPPED lpOverlapped, 46 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine); 47 47 48 /* this is a handler method for calls to ReadFileEx() */ 49 virtual BOOL ReadFileEx(PHMHANDLEDATA pHMHandleData, 50 LPVOID lpBuffer, 51 DWORD nNumberOfBytesToRead, 52 LPOVERLAPPED lpOverlapped, 53 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine); 54 55 /* this is a handler method for calls to WriteFile() */ 48 /* this is a handler method for calls to WriteFile/Ex */ 56 49 virtual BOOL WriteFile (PHMHANDLEDATA pHMHandleData, 57 50 LPCVOID lpBuffer, 58 51 DWORD nNumberOfBytesToWrite, 59 52 LPDWORD lpNumberOfBytesWritten, 60 LPOVERLAPPED lpOverlapped); 61 62 /* this is a handler method for calls to WriteFileEx() */ 63 virtual BOOL WriteFileEx(PHMHANDLEDATA pHMHandleData, 64 LPVOID lpBuffer, 65 DWORD nNumberOfBytesToWrite, 66 LPOVERLAPPED lpOverlapped, 67 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine); 53 LPOVERLAPPED lpOverlapped, 54 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine); 68 55 69 56 private:
Note:
See TracChangeset
for help on using the changeset viewer.
