Ignore:
Timestamp:
Jun 1, 2000, 1:28:48 PM (25 years ago)
Author:
sandervl
Message:

Rewrote file io apis

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/hmdevice.h

    r3588 r3642  
    1 /* $Id: hmdevice.h,v 1.18 2000-05-22 19:07:55 sandervl Exp $ */
     1/* $Id: hmdevice.h,v 1.19 2000-06-01 11:28:46 sandervl Exp $ */
    22
    33/*
     
    112112                             LPOVERLAPPED  lpOverlapped);
    113113
     114                        /* this is a handler method for calls to ReadFileEx() */
     115  virtual BOOL  ReadFileEx(PHMHANDLEDATA pHMHandleData,
     116                           LPVOID       lpBuffer,
     117                           DWORD        nNumberOfBytesToRead,
     118                           LPOVERLAPPED lpOverlapped,
     119                           LPOVERLAPPED_COMPLETION_ROUTINE  lpCompletionRoutine);
     120
    114121                        /* this is a handler method for calls to WriteFile() */
    115122  virtual BOOL   WriteFile  (PHMHANDLEDATA pHMHandleData,
     
    118125                             LPDWORD       lpNumberOfBytesWritten,
    119126                             LPOVERLAPPED  lpOverlapped);
     127
     128                        /* this is a handler method for calls to WriteFileEx() */
     129  virtual BOOL  WriteFileEx(PHMHANDLEDATA pHMHandleData,
     130                            LPVOID       lpBuffer,
     131                            DWORD        nNumberOfBytesToWrite,
     132                            LPOVERLAPPED lpOverlapped,
     133                            LPOVERLAPPED_COMPLETION_ROUTINE  lpCompletionRoutine);
    120134
    121135                      /* this is a handler method for calls to GetFileType() */
     
    185199                     /* this is a handler method for calls to UnlockFileEx() */
    186200  virtual DWORD UnlockFileEx(PHMHANDLEDATA pHMHandleData,
    187                              DWORD         dwFlags,
    188201                             DWORD         dwReserved,
    189202                             DWORD         nNumberOfBytesToLockLow,
Note: See TracChangeset for help on using the changeset viewer.