Changeset 689 for trunk/include


Ignore:
Timestamp:
Aug 25, 1999, 4:26:21 PM (26 years ago)
Author:
sandervl
Message:

handle manager changes for DuplicateHandle

Location:
trunk/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/HandleManager.h

    r676 r689  
    1 /* $Id: HandleManager.h,v 1.8 1999-08-25 10:25:05 sandervl Exp $ */
     1/* $Id: HandleManager.h,v 1.9 1999-08-25 14:26:21 sandervl Exp $ */
    22
    33/*
     
    289289                                     LPVOID                     lpBaseAddress);
    290290
     291BOOL HMDuplicateHandle(HANDLE  srcprocess,
     292                       HANDLE  srchandle,
     293                       HANDLE  destprocess,
     294                       PHANDLE desthandle,
     295                       DWORD   fdwAccess,
     296                       BOOL    fInherit,
     297                       DWORD   fdwOptions);
     298
    291299#ifdef __cplusplus__
    292300  }
  • trunk/include/winconst.h

    r602 r689  
    1 /* $Id: winconst.h,v 1.1 1999-08-20 20:11:06 sandervl Exp $ */
     1/* $Id: winconst.h,v 1.2 1999-08-25 14:26:21 sandervl Exp $ */
    22
    33/*
     
    9898#define WS_EX_ACCEPTFILES_W      0x00000010L
    9999#define WS_EX_TRANSPARENT_W      0x00000020L
     100
     101
     102#define DUPLICATE_CLOSE_SOURCE          0x00000001
     103#define DUPLICATE_SAME_ACCESS           0x00000002
     104
     105#define HANDLE_FLAG_INHERIT             0x00000001
     106#define HANDLE_FLAG_PROTECT_FROM_CLOSE  0x00000002
Note: See TracChangeset for help on using the changeset viewer.