Usermode - Moved UTF-8 handling into a library
[tpg/acess2.git] / Usermode / Applications / axwin3_src / WM / include / wm_input.h
1 /*
2  * Acess2 GUI (AxWin) Version 3
3  * - By John Hodge (thePowersGang)
4  *
5  * wm_input.h
6  * - Window Manager Input
7  */
8 #ifndef _WM_INPUT_H_
9 #define _WM_INPUT_H_
10
11 extern void     WM_Input_MouseMoved(int OldX, int OldY, int NewX, int NewY);
12 extern void     WM_Input_MouseButton(int X, int Y, int Button, int Pressed);
13 extern void     WM_Input_KeyDown(uint32_t Character, uint32_t Scancode);
14 extern void     WM_Input_KeyFire(uint32_t Character, uint32_t Scancode);
15 extern void     WM_Input_KeyUp  (uint32_t Character, uint32_t Scancode);
16
17 #endif
18

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