💾 Archived View for gemini.rmf-dev.com › repo › Vaati › Menkar › files › ca88fde76bacb1cc813cd0f0593… captured on 2023-04-19 at 23:27:27. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-03-20)
-=-=-=-=-=-=-
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