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

    r673 r678  
    1 /* $Id: hmmmap.h,v 1.2 1999-08-25 08:55:19 phaller Exp $ */
     1/* $Id: hmmmap.h,v 1.3 1999-08-25 10:28:40 sandervl Exp $ */
    22
    33/*
     
    3434  HMDeviceMemMapClass(LPCSTR lpDeviceName) : HMDeviceKernelObjectClass(lpDeviceName) {}
    3535
    36   // identify a memmap object by its base address
    37   static int findByBaseAddress(LPVOID lpBaseAddress);
    38 
    39 
    4036  /* this is a handler method for calls to CreateFileMapping() */
    4137  virtual DWORD CreateFileMapping   (PHMHANDLEDATA              pHMHandleData,
     
    4945  /* this is a handler method for calls to OpenFileMapping() */
    5046  virtual DWORD OpenFileMapping     (PHMHANDLEDATA              pHMHandleData,
    51                                      DWORD access,   /* [in] Access mode */
     47                                     DWORD access,   /* [in] Access mode */
    5248                                     BOOL                       fInherit,
    5349                                     LPCSTR                     lpName);
    5450
    5551  /* this is a handler method for calls to MapViewOfFile() */
    56   virtual LPVOID MapViewOfFile      (PHMHANDLEDATA              pHMHandleData,
    57                                      DWORD                      dwDesiredAccess,
    58                                      DWORD                      dwFileOffsetHigh,
    59                                      DWORD                      dwFileOffsetLow,
    60                                      DWORD                      dwNumberOfBytesToMap);
    61 
    62   /* this is a handler method for calls to MapViewOfFileEx() */
    6352  virtual LPVOID MapViewOfFileEx    (PHMHANDLEDATA              pHMHandleData,
    6453                                     DWORD                      dwDesiredAccess,
     
    6655                                     DWORD                      dwFileOffsetLow,
    6756                                     DWORD                      dwNumberOfBytesToMap,
    68                                      LPVOID                     lpBaseAddress);
     57                                     LPVOID                     lpBaseAddress);
    6958
    70                   /* this is a handler method for calls to UnmapViewOfFile() */
    71   virtual BOOL   UnmapViewOfFile    (PHMHANDLEDATA              pHMHandleData,
    72                                      LPVOID                     lpBaseAddress);
    73 
    74                   /* this is a handler method for calls to FlushViewOfFile() */
    75   virtual BOOL   FlushViewOfFile    (PHMHANDLEDATA              pHMHandleData,
    76                                      LPVOID                     lpBaseAddress,
    77                                      DWORD                      dwNumberOfBytesToFlush);
    78 
    79 
    80                   /* this is a handler method for calls to CloseHandle() */
    8159  virtual DWORD  CloseHandle(PHMHANDLEDATA pHMHandleData);
    8260};
Note: See TracChangeset for help on using the changeset viewer.