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,33 @@
compile insert msWin_Mouse_Equates
/*
** Copyright (C) 2016 Revelation Software Inc. All Rights Reserved **
Author Mr C
Date July 2016
Purpose Windows API Mouse equates
Amended Date Reason
======= ==== ======
*/
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#ifndef _MSWIN_MOUSE_EQUATES_
#define _MSWIN_MOUSE_EQUATES_
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
equ MK_LBUTTON$ to 0x0001
equ MK_RBUTTON$ to 0x0002
equ MK_SHIFT$ to 0x0004
equ MK_CONTROL$ to 0x0008
equ MK_MBUTTON$ to 0x0010
equ MK_XBUTTON1$ to 0x0020
equ MK_XBUTTON2$ to 0x0040
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#endif
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////