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,38 @@
compile insert msWin_GetWindowLong_Equates
/*
** Copyright (C) 2012-2017 Revelation Software Inc. All Rights Reserved **
Author : Mr C
Date : 16 Feb 2017
Purpose : Equates for the GetWindowLong and SetWindowLong Windows API
functions
Amended Date Reason
======= ==== ======
*/
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#ifndef _MSWIN_GETWINDOWLONG_EQUATES_
#define _MSWIN_GETWINDOWLONG_EQUATES_
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
declare function msWin_GetWindowLongPtr, msWin_GetWindowLong
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
equ GWL_WNDPROC$ to -4
equ GWL_HINSTANCE$ to -6
equ GWL_HWNDPARENT$ to -8
equ GWL_STYLE$ to -16
equ GWL_EXSTYLE$ to -20
equ GWL_USERDATA$ to -21
equ GWL_ID$ to -12
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#endif
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////