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,37 @@
compile insert msWin_GetWindow_Equates
/*
** Copyright (C) 2012-2017 Revelation Software Inc. All Rights Reserved **
Author : Mr C
Date : Feb 2017
Purpose : Equates for the GetWindow Windows API function.
Comments
========
Amended Date Reason
======= ==== ======
*/
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#ifndef _MSWIN_GETWINDOW_EQUATES_
#define _MSWIN_GETWINDOW_EQUATES_
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
declare function msWin_GetWindow
equ GW_HWNDFIRST$ to 0
equ GW_HWNDLAST$ to 1
equ GW_HWNDNEXT$ to 2
equ GW_HWNDPREV$ to 3
equ GW_OWNER$ to 4
equ GW_CHILD$ to 5
equ GW_ENABLEDPOPUP$ to 6
equ GW_MAX$ to 6
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#endif
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////