Changeset 7549 for trunk/src/kernel32/hmstd.h
- Timestamp:
- Dec 5, 2001, 3:16:38 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/hmstd.h
r5019 r7549 1 /* $Id: hmstd.h,v 1. 1 2001-01-23 18:31:26sandervl Exp $ */1 /* $Id: hmstd.h,v 1.2 2001-12-05 14:16:05 sandervl Exp $ */ 2 2 3 3 /* … … 34 34 HMDeviceStandardClass(LPCSTR lpDeviceName) : HMDeviceOpen32Class(lpDeviceName) {} 35 35 36 /* this is a handler method for calls to ReadFile()*/36 /* this is a handler method for calls to ReadFile/Ex */ 37 37 virtual BOOL ReadFile (PHMHANDLEDATA pHMHandleData, 38 38 LPCVOID lpBuffer, 39 39 DWORD nNumberOfBytesToRead, 40 40 LPDWORD lpNumberOfBytesRead, 41 LPOVERLAPPED lpOverlapped); 41 LPOVERLAPPED lpOverlapped, 42 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine); 42 43 43 /* this is a handler method for calls to ReadFileEx() */ 44 virtual BOOL ReadFileEx(PHMHANDLEDATA pHMHandleData, 45 LPVOID lpBuffer, 46 DWORD nNumberOfBytesToRead, 47 LPOVERLAPPED lpOverlapped, 48 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine); 49 50 /* this is a handler method for calls to WriteFile() */ 44 /* this is a handler method for calls to WriteFile/Ex */ 51 45 virtual BOOL WriteFile (PHMHANDLEDATA pHMHandleData, 52 46 LPCVOID lpBuffer, 53 47 DWORD nNumberOfBytesToWrite, 54 48 LPDWORD lpNumberOfBytesWritten, 55 LPOVERLAPPED lpOverlapped); 49 LPOVERLAPPED lpOverlapped, 50 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine); 56 51 57 /* this is a handler method for calls to WriteFileEx() */ 58 virtual BOOL WriteFileEx(PHMHANDLEDATA pHMHandleData, 59 LPVOID lpBuffer, 60 DWORD nNumberOfBytesToWrite, 61 LPOVERLAPPED lpOverlapped, 62 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine); 63 64 /* this is a handler method for calls to GetFileType() */ 52 /* this is a handler method for calls to GetFileType() */ 65 53 virtual DWORD GetFileType (PHMHANDLEDATA pHMHandleData); 66 54 };
Note:
See TracChangeset
for help on using the changeset viewer.