6 #ifndef __WINE_MONITOR_H
7 #define __WINE_MONITOR_H
11 typedef struct tagMONITOR
17 extern MONITOR MONITOR_PrimaryMonitor
;
19 static int inline MONITOR_GetWidth(MONITOR
*pMonitor
)
21 return pMonitor
->rect
.right
- pMonitor
->rect
.left
;
24 static int inline MONITOR_GetHeight(MONITOR
*pMonitor
)
26 return pMonitor
->rect
.bottom
- pMonitor
->rect
.top
;
29 static int inline MONITOR_GetDepth(MONITOR
*pMonitor
)
31 return pMonitor
->depth
;
34 #endif /* __WINE_MONITOR_H */