Mouse driver and AxWin
[tpg/acess2.git] / Modules / Input / PS2KbMouse / main.c
1 /*
2  * Acess2
3  *
4  * PS/2 Keboard / Mouse Driver
5  */
6 #include <acess.h>
7 #include <modules.h>
8
9 // === IMPORTS ===
10 extern int      KB_Install(char **Arguments);
11 extern int      PS2Mouse_Install(char **Arguments);
12
13 // === PROTOTYPES ===
14  int    PS2_Install(char **Arguments);
15
16 // === GLOBALS ===
17 MODULE_DEFINE(0, 0x0100, Input_PS2KbMouse, PS2_Install, NULL, NULL);    // Shuts the makefile up
18 MODULE_DEFINE(0, 0x0100, PS2Keyboard, KB_Install, NULL, NULL);
19 MODULE_DEFINE(0, 0x0100, PS2Mouse, PS2Mouse_Install, NULL, NULL);
20
21 // === CODE ===
22 int PS2_Install(char **Arguments)
23 {
24 //      KB_Install(Arguments);
25 //      Mouse_Install(Arguments);
26         return MODULE_ERR_OK;
27 }

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