Ignore:
Timestamp:
Jul 5, 1999, 11:58:14 AM (26 years ago)
Author:
phaller
Message:

Fix: streamlined Handlemanager

File:
1 edited

Legend:

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

    r111 r271  
    1 /* $Id: hmdevice.h,v 1.1 1999-06-17 18:21:43 phaller Exp $ */
     1/* $Id: hmdevice.h,v 1.2 1999-07-05 09:58:14 phaller Exp $ */
    22
    33/*
     
    2525 * Structures                                                                *
    2626 *****************************************************************************/
     27
     28typedef struct _HMHANDLEDATA
     29{
     30  HANDLE          hHMHandle;             /* a copy of the OS/2 system handle */
     31
     32  DWORD           dwType;                          /* handle type identifier */
     33
     34  DWORD           dwAccess;                     /* access mode of the handle */
     35  DWORD           dwShare;                       /* share mode of the handle */
     36  DWORD           dwCreation;                       /* dwCreationDisposition */
     37  DWORD           dwFlags;                           /* flags and attributes */
     38
     39  LPVOID          lpHandlerData;    /* for private use of the device handler */
     40} HMHANDLEDATA, *PHMHANDLEDATA;
     41
     42
    2743
    2844class HMDeviceHandler
Note: See TracChangeset for help on using the changeset viewer.