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/conout.h

    r7457 r7549  
    1 /* $Id: conout.h,v 1.3 2001-11-26 14:53:59 sandervl Exp $ */
     1/* $Id: conout.h,v 1.4 2001-12-05 14:15:58 sandervl Exp $ */
    22
    33/*
     
    5454
    5555                       /* this is a handler method for calls to CreateFile() */
    56   virtual DWORD  CreateFile (HANDLE        hHandle,
    57                              LPCSTR        lpFileName,
     56  virtual DWORD  CreateFile (LPCSTR        lpFileName,
    5857                             PHMHANDLEDATA pHMHandleData,
    5958                             PVOID         lpSecurityAttributes,
    6059                             PHMHANDLEDATA pHMHandleDataTemplate);
     60
     61  /* this is a handler method for calls to GetFileType() */
     62  virtual DWORD GetFileType (PHMHANDLEDATA pHMHandleData);
    6163
    6264                           /* this is a handler method for calls to ReadFile() */
     
    6567                             DWORD         nNumberOfBytesToRead,
    6668                             LPDWORD       lpNumberOfBytesRead,
    67                              LPOVERLAPPED  lpOverlapped);
     69                             LPOVERLAPPED  lpOverlapped,
     70                             LPOVERLAPPED_COMPLETION_ROUTINE  lpCompletionRoutine);
    6871
    6972                        /* this is a handler method for calls to WriteFile() */
     
    7275                             DWORD         nNumberOfBytesToWrite,
    7376                             LPDWORD       lpNumberOfBytesWritten,
    74                              LPOVERLAPPED  lpOverlapped);
     77                             LPOVERLAPPED  lpOverlapped,
     78                             LPOVERLAPPED_COMPLETION_ROUTINE  lpCompletionRoutine);
    7579
    7680
     
    8387                                ULONG         arg4);
    8488
    85                       /* this is a handler method for calls to GetFileType() */
    86   virtual DWORD GetFileType (PHMHANDLEDATA pHMHandleData);
    87 
    8889};
    8990
Note: See TracChangeset for help on using the changeset viewer.