Ignore:
Timestamp:
Nov 22, 2001, 5:03:23 PM (24 years ago)
Author:
sandervl
Message:

floppy change fixes

File:
1 edited

Legend:

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

    r7272 r7430  
    1 /* $Id: hmdisk.h,v 1.5 2001-10-30 00:46:17 sandervl Exp $ */
     1/* $Id: hmdisk.h,v 1.6 2001-11-22 16:03:23 sandervl Exp $ */
    22
    33#ifndef __HMDISK_H__
     
    5151                                     LPDWORD lpBytesReturned, LPOVERLAPPED lpOverlapped);
    5252
     53                        /* this is a handler method for calls to ReadFileEx() */
     54  virtual BOOL  ReadFileEx(PHMHANDLEDATA pHMHandleData,
     55                           LPVOID       lpBuffer,
     56                           DWORD        nNumberOfBytesToRead,
     57                           LPOVERLAPPED lpOverlapped,
     58                           LPOVERLAPPED_COMPLETION_ROUTINE  lpCompletionRoutine);
     59
     60                        /* this is a handler method for calls to WriteFile() */
     61  virtual BOOL   WriteFile  (PHMHANDLEDATA pHMHandleData,
     62                             LPCVOID       lpBuffer,
     63                             DWORD         nNumberOfBytesToWrite,
     64                             LPDWORD       lpNumberOfBytesWritten,
     65                             LPOVERLAPPED  lpOverlapped);
     66
     67                        /* this is a handler method for calls to WriteFileEx() */
     68  virtual BOOL  WriteFileEx(PHMHANDLEDATA pHMHandleData,
     69                            LPVOID       lpBuffer,
     70                            DWORD        nNumberOfBytesToWrite,
     71                            LPOVERLAPPED lpOverlapped,
     72                            LPOVERLAPPED_COMPLETION_ROUTINE  lpCompletionRoutine);
     73
     74                      /* this is a handler method for calls to GetFileType() */
     75  virtual DWORD GetFileType (PHMHANDLEDATA pHMHandleData);
     76
    5377private:
    5478          DWORD  OpenDisk(PVOID pDrvInfo);
Note: See TracChangeset for help on using the changeset viewer.