mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 22:10:03 +01:00
15 lines
351 B
C
15 lines
351 B
C
|
|
|
||
|
|
/* data returned for monitor information */
|
||
|
|
struct GetMonitorInfoData {
|
||
|
|
int requestedMonitor;
|
||
|
|
int monitorNum;
|
||
|
|
Bool bUserSpecifiedMonitor;
|
||
|
|
Bool bMonitorSpecifiedExists;
|
||
|
|
int monitorOffsetX;
|
||
|
|
int monitorOffsetY;
|
||
|
|
int monitorHeight;
|
||
|
|
int monitorWidth;
|
||
|
|
};
|
||
|
|
|
||
|
|
Bool QueryMonitor(int index, struct GetMonitorInfoData *data);
|