7ec792ab305e7b28c0f430e069ffb213f459e26b
[tpg/acess2.git] / Usermode / Applications / axwin2_src / WM / common.h
1 /*
2  * Acess GUI (AxWin) Version 2
3  * By John Hodge (thePowersGang)
4  */
5 #ifndef _COMMON_H_
6 #define _COMMON_H_
7
8 #include <stdlib.h>
9 #include <stdio.h>
10 #include <stdint.h>
11
12 #include "wm.h"
13
14 // === GLOBALS ===
15 extern char     *gsTerminalDevice;
16 extern char     *gsMouseDevice;
17
18 extern int      giScreenWidth;
19 extern int      giScreenHeight;
20 extern uint32_t *gpScreenBuffer;
21
22 extern int      giTerminalFD;
23 extern int      giMouseFD;
24
25 // === Functions ===
26 extern void     memset32(void *ptr, uint32_t val, size_t count);
27 extern void     Video_FillRect(short X, short Y, short W, short H, uint32_t Color);
28 extern void     Video_Update(void);
29
30 #endif

UCC git Repository :: git.ucc.asn.au