1 /*
2  * OpenBOR - http://www.LavaLit.com
3  * -----------------------------------------------------------------------
4  * Licensed under the BSD license, see LICENSE in OpenBOR root for details.
5  *
6  * Copyright (c) 2004 - 2011 OpenBOR Team
7  */
8 
9 #ifndef XBOXPORT_H
10 #define XBOXPORT_H
11 
12 #include <xtl.h>
13 #include <stdio.h>
14 #include <stdarg.h>
15 #include <stdlib.h>
16 #include <string.h>
17 #include <fcntl.h>
18 #include <stdlib.h>
19 #include <io.h>
20 #include "ram.h"
21 #include "globals.h"
22 #include "types.h"
23 
24 unsigned long xbox_get_playerinput(int playernum);
25 void xbox_check_events(void);
26 void xbox_put_image(int src_w, int src_h, s_screen* source);
27 void xbox_set_palette(char *palette);
28 void xbox_clear_screen( void );
29 void xbox_resize(void);
30 void xbox_pause_audio(int state);
31 void openborMain(int argc, char** argv);
32 void borExit(int reset);
33 
34 extern char packfile[128];
35 
36 #endif