]> icculus.org git repositories - btb/d2x.git/blob - arch/svgalib/event.c
SHAREWARE fixes
[btb/d2x.git] / arch / svgalib / event.c
1 /*
2  * $Source: /cvs/cvsroot/d2x/arch/svgalib/event.c,v $
3  * $Revision: 1.1 $
4  * $Author: bradleyb $
5  * $Date: 2001-10-24 09:25:05 $
6  *
7  * SVGALib Event related stuff
8  *
9  * $Log: not supported by cvs2svn $
10  * Revision 1.2  2001/01/29 14:03:57  bradleyb
11  * Fixed build, minor fixes
12  *
13  */
14
15 #ifdef HAVE_CONFIG_H
16 #include <conf.h>
17 #endif
18
19 #include <stdio.h>
20 #include <stdlib.h>
21
22 #include <vgakeyboard.h>
23 #include <vgamouse.h>
24
25 void key_handler(int scancode, int press);
26 //added on 10/17/98 by Hans de Goede for mouse functionality
27 //extern void mouse_button_handler(SDL_MouseButtonEvent *mbe);
28 //extern void mouse_motion_handler(SDL_MouseMotionEvent *mme);
29 //end this section addition - Hans
30
31 void event_poll()
32 {
33  keyboard_update();
34  mouse_update();
35 }
36
37 /*int event_init()
38 {
39  initialised = 1;
40  return 0;
41 }*/