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,46 @@
compile insert msWin_LastInputInfo_Equates
/*
** Copyright (C) 2012-2023 Revelation Software Inc. All Rights Reserved **
Author Mr C
Date August 2023
Purpose Equates for use with Windows LASTINPUTINFO Structure
Comments
========
Amended Date Reason
======= ==== ======
*/
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#ifndef _MSWIN_LASTINPUTINFO_EQUATES_
#define _MSWIN_LASTINPUTINFO_EQUATES_
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
declare function msWin_GetLastInputInfo
$uses @APPID*DLLSTRUCT**MSWIN_LASTINPUTINFO
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// LASTINPUTINFO Structure equates - this structure is defined in the
// Windows API as:
//
// typedef struct tagLASTINPUTINFO {
// UINT cbSize;
// DWORD dwTime;
// } LASTINPUTINFO, *PLASTINPUTINFO;
equ LASTINPUTINFO$ to "MSWIN_LASTINPUTINFO"
equ LII_POS_CBSIZE$ to 1
equ LII_POS_DWTIME$ to 2
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#endif
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////