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,47 @@
compile insert msWin_Point_Equates
/*
** Copyright (C) 2012-2022 Revelation Software Inc. All Rights Reserved **
Author Mr C
Date October 2012
Purpose Equates for use with Windows POINT Structure
Comments
========
Amended Date Reason
======= ==== ======
*/
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#ifndef _MSWIN_POINT_EQUATES_
#define _MSWIN_POINT_EQUATES_
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
$uses @APPID*DLLSTRUCT**MSWIN_POINT
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// POINT Structure equates - this structure is defined in the Windows API as:
//
// typedef struct _POINT {
// LONG x;
// LONG y;
// } POINT,
//
// The structure definition in OI32 is stored in SYSOBJ as
// STRUCT_WIN32_POINT
equ POINT$ to "MSWIN_POINT"
equ PT_POS_X$ to 1
equ PT_POS_Y$ to 2
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#endif
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////