dxx-rebirth/arch/svgalib/event.c
2006-03-20 17:12:09 +00:00

48 lines
977 B
C
Executable file

/*
* $Source: /cvsroot/dxx-rebirth/d2x-rebirth/arch/svgalib/event.c,v $
* $Revision: 1.1.1.1 $
* $Author: zicodxx $
* $Date: 2006/03/17 19:54:30 $
*
* SVGALib Event related stuff
*
* $Log: event.c,v $
* Revision 1.1.1.1 2006/03/17 19:54:30 zicodxx
* initial import
*
* Revision 1.1 2001/10/24 09:25:05 bradleyb
* Moved input stuff to arch subdirs, as in d1x.
*
* Revision 1.2 2001/01/29 14:03:57 bradleyb
* Fixed build, minor fixes
*
*/
#ifdef HAVE_CONFIG_H
#include <conf.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <vgakeyboard.h>
#include <vgamouse.h>
void key_handler(int scancode, int press);
//added on 10/17/98 by Hans de Goede for mouse functionality
//extern void mouse_button_handler(SDL_MouseButtonEvent *mbe);
//extern void mouse_motion_handler(SDL_MouseMotionEvent *mme);
//end this section addition - Hans
void event_poll()
{
keyboard_update();
mouse_update();
}
/*int event_init()
{
initialised = 1;
return 0;
}*/