Go Back

0 #if !defined(MONITOR_H)

1 #define MONITOR_H

2

3 typedef struct monitor {

4 int x;

5 int y;

6 int w;

7 int h;

8 int id;

9 } monitor;

10

11 int get_monitor_cursor();

12 extern monitor* monitors;

13 extern int monitors_len;

14

15 #endif