Ignore:
Timestamp:
Jul 6, 1999, 5:48:48 PM (26 years ago)
Author:
phaller
Message:

Add: HandleManager support for kernel objects, various fixes

File:
1 edited

Legend:

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

    r111 r278  
    1 /* $Id: hmopen32.h,v 1.1 1999-06-17 18:21:43 phaller Exp $ */
     1/* $Id: hmopen32.h,v 1.2 1999-07-06 15:48:47 phaller Exp $ */
    22
    33/*
     
    126126                             DWORD         nNumberOfBytesToLockHigh,
    127127                             LPOVERLAPPED  lpOverlapped);
     128
     129                /* this is a handler method for calls to WaitForSingleObject */
     130  virtual DWORD WaitForSingleObject  (PHMHANDLEDATA pHMHandleData,
     131                                      DWORD  dwTimeout);
     132
     133              /* this is a handler method for calls to WaitForSingleObjectEx */
     134  virtual DWORD WaitForSingleObjectEx(PHMHANDLEDATA pHMHandleData,
     135                                      DWORD  dwTimeout,
     136                                      BOOL   fAlertable);
     137
     138                   /* this is a handler method for calls to FlushFileBuffers */
     139  virtual BOOL FlushFileBuffers(PHMHANDLEDATA pHMHandleData);
     140
     141                /* this is a handler method for calls to GetOverlappedResult */
     142  virtual BOOL GetOverlappedResult(PHMHANDLEDATA pHMHandleData,
     143                                   LPOVERLAPPED  arg2,
     144                                   LPDWORD       arg3,
     145                                   BOOL          arg4);
    128146};
    129147
Note: See TracChangeset for help on using the changeset viewer.