Ignore:
Timestamp:
Aug 25, 1999, 10:57:14 AM (26 years ago)
Author:
phaller
Message:

Add: HMDeviceMemMapClass fixed

File:
1 edited

Legend:

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

    r664 r673  
    1 /* $Id: hmdevice.h,v 1.5 1999-08-24 18:46:39 sandervl Exp $ */
     1/* $Id: hmdevice.h,v 1.6 1999-08-25 08:55:18 phaller 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 MapViewOfFileEx() */
     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() */
    267274  virtual LPVOID MapViewOfFileEx    (PHMHANDLEDATA              pHMHandleData,
    268275                                     DWORD                      dwDesiredAccess,
     
    270277                                     DWORD                      dwFileOffsetLow,
    271278                                     DWORD                      dwNumberOfBytesToMap,
    272                                      LPVOID                     lpBaseAddress);
     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);
    273289
    274290};
Note: See TracChangeset for help on using the changeset viewer.