]> icculus.org git repositories - btb/d2x.git/blob - arch/win32/mingw_init.c
use the orientation parameter of g3_draw_bitmap
[btb/d2x.git] / arch / win32 / mingw_init.c
1 /*
2  *
3  * mingw_init.c - Basically same as linux init.c
4  *
5  */
6
7 #ifdef HAVE_CONFIG_H
8 #include <conf.h>
9 #endif
10
11 #include <stdlib.h>
12 #include <stdio.h>
13 #include "pstypes.h"
14 #include "console.h"
15 #include "text.h"
16 #include "event.h"
17 #include "dxxerror.h"
18 #include "joy.h"
19 #include "args.h"
20
21 extern void arch_sdl_init();
22 extern void key_init();
23 extern int com_init();
24 extern void timer_init();
25
26 void arch_init_start()
27 {
28
29 }
30
31 void arch_init()
32 {
33  // Initialise the library
34         arch_sdl_init();
35         //added 06/09/99 Matt Mueller - fix nonetwork compile
36 #ifdef NETWORK
37         //end addition -MM
38 //added on 10/19/98 by Victor Rachels to add serial support (from DPH)
39     if(!(FindArg("-noserial")))
40      com_init();
41 //end this section addition - Victor 
42         //added 06/09/99 Matt Mueller - fix nonetwork compile
43 #endif
44         //end addition -MM
45     key_init();
46 }