Ignore:
Timestamp:
Aug 25, 1999, 12:28:41 PM (26 years ago)
Author:
sandervl
Message:

Put back handlemanager changes + memory mapped file changes

File:
1 edited

Legend:

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

    r673 r678  
    1 /* $Id: hmdevice.h,v 1.6 1999-08-25 08:55:18 phaller Exp $ */
     1/* $Id: hmdevice.h,v 1.7 1999-08-25 10:28:40 sandervl Exp $ */
    22
    33/*
     
    2525 *****************************************************************************/
    2626
    27 #define HMTYPE_UNKNOWN                   0
    28 #define HMTYPE_MEMMAP                    1
     27#define HMTYPE_UNKNOWN  0
     28#define HMTYPE_MEMMAP   1
    2929//.....
    3030
     
    232232   ***************************************************************************/
    233233
    234                   /* this is a handler method for calls to CreateSemaphore() */
     234                     /* this is a handler method for calls to CreateSemaphore() */
    235235  virtual DWORD CreateSemaphore (PHMHANDLEDATA         pHMHandleData,
    236236                                 LPSECURITY_ATTRIBUTES lpsa,
     
    239239                                 LPCSTR                lpszSemaphoreName);
    240240
    241                     /* this is a handler method for calls to OpenSemaphore() */
     241                       /* this is a handler method for calls to OpenSemaphore() */
    242242  virtual DWORD OpenSemaphore   (PHMHANDLEDATA         pHMHandleData,
    243243                                 BOOL                  fInheritHandle,
    244244                                 LPCSTR                lpszSemaphoreName);
    245245
    246                   /* this is a handle method for calls to ReleaseSemaphore() */
     246                     /* this is a handle method for calls to ReleaseSemaphore() */
    247247  virtual BOOL  ReleaseSemaphore(PHMHANDLEDATA pHMHandleData,
    248248                                 LONG          cReleaseCount,
     
    260260                  /* this is a handler method for calls to OpenFileMapping() */
    261261  virtual DWORD OpenFileMapping     (PHMHANDLEDATA              pHMHandleData,
    262                                      DWORD access,   /* [in] Access mode */
     262                                     DWORD access,   /* [in] Access mode */
    263263                                     BOOL                       fInherit,
    264264                                     LPCSTR                     lpName);
    265265
    266                     /* this is a handler method for calls to MapViewOfFile() */
    267   virtual LPVOID MapViewOfFile      (PHMHANDLEDATA              pHMHandleData,
    268                                      DWORD                      dwDesiredAccess,
    269                                      DWORD                      dwFileOffsetHigh,
    270                                      DWORD                      dwFileOffsetLow,
    271                                      DWORD                      dwNumberOfBytesToMap);
    272 
    273                   /* this is a handler method for calls to MapViewOfFileEx() */
     266                    /* this is a handler method for calls to MapViewOfFileEx() */
    274267  virtual LPVOID MapViewOfFileEx    (PHMHANDLEDATA              pHMHandleData,
    275268                                     DWORD                      dwDesiredAccess,
     
    277270                                     DWORD                      dwFileOffsetLow,
    278271                                     DWORD                      dwNumberOfBytesToMap,
    279                                      LPVOID                     lpBaseAddress);
    280 
    281                   /* this is a handler method for calls to UnmapViewOfFile() */
    282   virtual BOOL   UnmapViewOfFile    (PHMHANDLEDATA              pHMHandleData,
    283                                      LPVOID                     lpBaseAddress);
    284 
    285                   /* this is a handler method for calls to FlushViewOfFile() */
    286   virtual BOOL   FlushViewOfFile    (PHMHANDLEDATA              pHMHandleData,
    287                                      LPVOID                     lpBaseAddress,
    288                                      DWORD                      dwNumberOfBytesToFlush);
     272                                     LPVOID                     lpBaseAddress);
    289273
    290274};
Note: See TracChangeset for help on using the changeset viewer.