open-insight/SYSPROG/STPROCINS/MSWIN_MOUSE_EQUATES.txt
2024-03-25 15:17:34 -07:00

34 lines
1.3 KiB
Plaintext

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
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////