5b8e8b52f90af6433e996f2117b23f4d138803ff
[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 // === CODE ===
20 int main(int argc, char *argv[])
21 {
22         Cokebank_Init();
23         
24         Load_Itemlist();
25         
26         Server_Start();
27         
28         return 0;
29 }
30

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