49 lines
1.9 KiB
Plaintext
49 lines
1.9 KiB
Plaintext
compile insert ps_Monitor_Equates
|
|
/*
|
|
** Copyright (C) 2013 Revelation Software Inc. All Rights Reserved **
|
|
|
|
This insert is proprietary and is not to be used by or disclosed
|
|
to others, nor is it to be copied without written permission from
|
|
Revelation Technologies, Inc.
|
|
|
|
Author : Wile C Coyote - Super Genius
|
|
Date : Sept 2014
|
|
Purpose : Constants for working with PS MONITOR structures
|
|
|
|
|
|
Comments
|
|
========
|
|
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
Mr C 06 Dec 16 Added DPI constants
|
|
Mr C 20 Oct 15 Added msWin_Monitor_Equates
|
|
mtr 12 Dec 14 Git sucks
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _PS_MONITOR_EQUATES_
|
|
#define _PS_MONITOR_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
$insert msWin_Monitor_Equates
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
equ PS_MON_POS_HANDLE$ to 1
|
|
equ PS_MON_POS_SCREENRECT$ to 2
|
|
equ PS_MON_POS_WORKAREARECT$ to 3
|
|
equ PS_MON_POS_FLAGS$ to 4
|
|
equ PS_MON_POS_NAME$ to 5
|
|
equ PS_MON_POS_DPIX$ to 6
|
|
equ PS_MON_POS_DPIY$ to 7
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|