34 lines
1.4 KiB
Plaintext
34 lines
1.4 KiB
Plaintext
compile insert msWin_Object_Handle_Equates
|
|
/*
|
|
** Copyright (C) 1992-2014 Revelation Software Inc. All Rights Reserved **
|
|
|
|
Author Mr C
|
|
Date 05 Apr 2014
|
|
Purpose Equates for use with the Windows API object handle
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
|
|
*/
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _MSWIN_OBJECT_HANDLE_EQUATES_
|
|
#define _MSWIN_OBJECT_HANDLE_EQUATES_
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
declare function msWin_GetStdHandle, msWin_SetHandleInformation
|
|
declare function msWin_CloseHandle
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
equ HANDLE_FLAG_INHERIT$ to 0x00000001
|
|
equ HANDLE_FLAG_PROTECT_FROM_CLOSE$ to 0x00000002
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////
|