Ignore:
Timestamp:
Dec 5, 2001, 3:16:38 PM (24 years ago)
Author:
sandervl
Message:

preliminary changes for new overlapped io framework

File:
1 edited

Legend:

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

    r7457 r7549  
    1 /* $Id: conin.h,v 1.4 2001-11-26 14:53:59 sandervl Exp $ */
     1/* $Id: conin.h,v 1.5 2001-12-05 14:15:58 sandervl Exp $ */
    22
    33/*
     
    5656
    5757                       /* this is a handler method for calls to CreateFile() */
    58   virtual DWORD  CreateFile (HANDLE        hHandle,
    59                              LPCSTR        lpFileName,
     58  virtual DWORD  CreateFile (LPCSTR        lpFileName,
    6059                             PHMHANDLEDATA pHMHandleData,
    6160                             PVOID         lpSecurityAttributes,
     
    6766                             DWORD         nNumberOfBytesToRead,
    6867                             LPDWORD       lpNumberOfBytesRead,
    69                              LPOVERLAPPED  lpOverlapped);
     68                             LPOVERLAPPED  lpOverlapped,
     69                             LPOVERLAPPED_COMPLETION_ROUTINE  lpCompletionRoutine);
    7070
    7171                        /* this is a handler method for calls to WriteFile() */
     
    7474                             DWORD         nNumberOfBytesToWrite,
    7575                             LPDWORD       lpNumberOfBytesWritten,
    76                              LPOVERLAPPED  lpOverlapped);
     76                             LPOVERLAPPED  lpOverlapped,
     77                             LPOVERLAPPED_COMPLETION_ROUTINE  lpCompletionRoutine);
     78
     79  /* this is a handler method for calls to GetFileType() */
     80  virtual DWORD GetFileType (PHMHANDLEDATA pHMHandleData);
    7781
    7882  virtual DWORD  _DeviceRequest (PHMHANDLEDATA pHMHandleData,
     
    140144                                    LPDWORD       lpcWritten);
    141145
    142                       /* this is a handler method for calls to GetFileType() */
    143   virtual DWORD GetFileType (PHMHANDLEDATA pHMHandleData);
    144 
    145146};
    146147
Note: See TracChangeset for help on using the changeset viewer.