open-insight/SYSPROG/STPROCINS/MSWIN_OBJECT_HANDLE_EQUATES.txt
2024-03-25 15:17:34 -07:00

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
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////