blob: 2e83b6c8e374a99e474544ea8e5a6b9a131cb435 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* data returned for monitor information */
struct GetMonitorInfoData {
int requestedMonitor;
int monitorNum;
Bool bUserSpecifiedMonitor;
Bool bMonitorSpecifiedExists;
int monitorOffsetX;
int monitorOffsetY;
int monitorHeight;
int monitorWidth;
HMONITOR monitorHandle;
};
Bool QueryMonitor(int index, struct GetMonitorInfoData *data);
|