]> icculus.org git repositories - btb/d2x.git/blob - arch/linux/svgalib/event.c
This commit was generated by cvs2svn to compensate for changes in r2,
[btb/d2x.git] / arch / linux / svgalib / event.c
1 // SDL Event related stuff
2
3 #include <stdio.h>
4 #include <stdlib.h>
5
6 #include <vgakeyboard.h>
7 #include <vgamouse.h>
8
9 void key_handler(int scancode, int press);
10 //added on 10/17/98 by Hans de Goede for mouse functionality
11 //extern void mouse_button_handler(SDL_MouseButtonEvent *mbe);
12 //extern void mouse_motion_handler(SDL_MouseMotionEvent *mme);
13 //end this section addition - Hans
14
15 void event_poll()
16 {
17  keyboard_update();
18  mouse_update();
19 }
20
21 /*int event_init()
22 {
23  initialised = 1;
24  return 0;
25 }*/