💾 Archived View for gemini.rmf-dev.com › repo › Vaati › Menkar › files › ca88fde76bacb1cc813cd0f0593… captured on 2023-09-08 at 16:37:08. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-03-20)

🚧 View Differences

-=-=-=-=-=-=-

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