Changeset 7549 for trunk/src/kernel32/hmfile.h
- Timestamp:
- Dec 5, 2001, 3:16:38 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/hmfile.h
r7457 r7549 1 /* $Id: hmfile.h,v 1. 6 2001-11-26 14:54:02sandervl Exp $ */1 /* $Id: hmfile.h,v 1.7 2001-12-05 14:16:01 sandervl Exp $ */ 2 2 3 3 /* … … 45 45 46 46 /* this is a handler method for calls to CreateFile() */ 47 virtual DWORD CreateFile (HANDLE hHandle, 48 LPCSTR lpFileName, 47 virtual DWORD CreateFile (LPCSTR lpFileName, 49 48 PHMHANDLEDATA pHMHandleData, 50 49 PVOID lpSecurityAttributes, … … 52 51 53 52 /* this is a handler method for calls to OpenFile() */ 54 virtual DWORD OpenFile (HANDLE hHandle, 55 LPCSTR lpFileName, 53 virtual DWORD OpenFile (LPCSTR lpFileName, 56 54 PHMHANDLEDATA pHMHandleData, 57 55 OFSTRUCT* pOFStruct, … … 70 68 virtual BOOL CloseHandle(PHMHANDLEDATA pHMHandleData); 71 69 72 /* this is a handler method for calls to ReadFile()*/70 /* this is a handler method for calls to ReadFile/Ex */ 73 71 virtual BOOL ReadFile (PHMHANDLEDATA pHMHandleData, 74 72 LPCVOID lpBuffer, 75 73 DWORD nNumberOfBytesToRead, 76 74 LPDWORD lpNumberOfBytesRead, 77 LPOVERLAPPED lpOverlapped); 75 LPOVERLAPPED lpOverlapped, 76 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine); 78 77 79 /* this is a handler method for calls to ReadFileEx() */ 80 virtual BOOL ReadFileEx(PHMHANDLEDATA pHMHandleData, 81 LPVOID lpBuffer, 82 DWORD nNumberOfBytesToRead, 83 LPOVERLAPPED lpOverlapped, 84 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine); 85 86 /* this is a handler method for calls to WriteFile() */ 78 /* this is a handler method for calls to WriteFile/Ex */ 87 79 virtual BOOL WriteFile (PHMHANDLEDATA pHMHandleData, 88 80 LPCVOID lpBuffer, 89 81 DWORD nNumberOfBytesToWrite, 90 82 LPDWORD lpNumberOfBytesWritten, 91 LPOVERLAPPED lpOverlapped); 83 LPOVERLAPPED lpOverlapped, 84 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine); 92 85 93 /* this is a handler method for calls to WriteFileEx() */ 94 virtual BOOL WriteFileEx(PHMHANDLEDATA pHMHandleData, 95 LPVOID lpBuffer, 96 DWORD nNumberOfBytesToWrite, 97 LPOVERLAPPED lpOverlapped, 98 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine); 99 100 /* this is a handler method for calls to GetFileType() */ 86 /* this is a handler method for calls to GetFileType() */ 101 87 virtual DWORD GetFileType (PHMHANDLEDATA pHMHandleData); 102 88
Note:
See TracChangeset
for help on using the changeset viewer.