Changeset 7549 for trunk/src/kernel32/hmparport.h
- Timestamp:
- Dec 5, 2001, 3:16:38 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/hmparport.h
r7546 r7549 1 /* $Id: hmparport.h,v 1. 5 2001-12-05 09:09:52 phallerExp $ */1 /* $Id: hmparport.h,v 1.6 2001-12-05 14:16:05 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, … … 62 61 63 62 64 /* this is a handler method for calls to ReadFile()*/63 /* this is a handler method for calls to ReadFile/Ex */ 65 64 virtual BOOL ReadFile (PHMHANDLEDATA pHMHandleData, 66 65 LPCVOID lpBuffer, 67 66 DWORD nNumberOfBytesToRead, 68 67 LPDWORD lpNumberOfBytesRead, 69 LPOVERLAPPED lpOverlapped); 68 LPOVERLAPPED lpOverlapped, 69 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine); 70 70 71 /* this is a handler method for calls to ReadFileEx() */ 72 virtual BOOL ReadFileEx(PHMHANDLEDATA pHMHandleData, 73 LPVOID lpBuffer, 74 DWORD nNumberOfBytesToRead, 75 LPOVERLAPPED lpOverlapped, 76 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine); 77 78 /* this is a handler method for calls to WriteFile() */ 71 /* this is a handler method for calls to WriteFile/Ex */ 79 72 virtual BOOL WriteFile (PHMHANDLEDATA pHMHandleData, 80 73 LPCVOID lpBuffer, 81 74 DWORD nNumberOfBytesToWrite, 82 75 LPDWORD lpNumberOfBytesWritten, 83 LPOVERLAPPED lpOverlapped); 84 85 /* this is a handler method for calls to WriteFileEx() */ 86 virtual BOOL WriteFileEx(PHMHANDLEDATA pHMHandleData, 87 LPVOID lpBuffer, 88 DWORD nNumberOfBytesToWrite, 89 LPOVERLAPPED lpOverlapped, 90 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine); 76 LPOVERLAPPED lpOverlapped, 77 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine); 91 78 92 79 private:
Note:
See TracChangeset
for help on using the changeset viewer.