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,43 @@
compile insert msWin_Security_Attributes_Equates
/*
** Copyright (C) 1992-2020 Revelation Software Inc. All Rights Reserved **
Author Captain C
Date April 2012
Purpose Equates for use with the Windows API Security Attributes structure
Amended Date Reason
======= ==== ======
Mr C 06 Apr 20 Updated to reference DLLSTRUCT entities
*/
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
#ifndef _MSWIN_SECURITY_ATTRIBUTES_EQUATES_
#define _MSWIN_SECURITY_ATTRIBUTES_EQUATES_
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
$uses @APPID*DLLSTRUCT**MSWIN_SECURITY_ATTRIBUTES
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
* // PROCESS_INFORMATION structure equates
* //
* // typedef struct _SECURITY_ATTRIBUTES {
* // DWORD nLength;
* // LPVOID lpSecurityDescriptor;
* // BOOL bInheritHandle;
* // } SECURITY_ATTRIBUTES
equ SECURITY_ATTRIBUTES$ to "MSWIN_SECURITY_ATTRIBUTES"
equ SA_POS_NLENGTH$ to 1
equ SA_POS_LPSECURITYDESCRIPTOR$ to 2
equ SA_POS_BINHERITHANDLE$ to 3
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
#endif
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////