added sysprog entities

This commit is contained in:
Infineon\StieberD
2024-03-25 15:17:34 -07:00
parent 600a8e1f61
commit 3a6a2b6b5b
1028 changed files with 171660 additions and 0 deletions

View File

@ -0,0 +1,33 @@
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
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////