Compile fixes
[tpg/opendispense2.git] / server / src / main.c
1 /*
2  * OpenDispense 2 
3  * UCC (University [of WA] Computer Club) Electronic Accounting System
4  *
5  * main.c - Initialisation Code
6  *
7  * This file is licenced under the 3-clause BSD Licence. See the file
8  * COPYING for full details.
9  */
10 #include <stdlib.h>
11 #include <stdio.h>
12 #include "common.h"
13
14 // === IMPORTS ===
15 extern void     Init_Cokebank(void);
16 extern void     Load_Itemlist(void);
17 extern void     Server_Start(void);
18
19 // === GLOBALS ===
20  int    giDebugLevel = 0;
21
22 // === CODE ===
23 int main(int argc, char *argv[])
24 {
25         //Init_Cokebank();
26         
27         //Load_Itemlist();
28         
29         Server_Start();
30         
31         return 0;
32 }
33

UCC git Repository :: git.ucc.asn.au