version 0.2.0
[fms.git] / include / global.h
1 #ifndef _global_\r
2 #define _global_\r
3 \r
4 #include <vector>\r
5 //#include <zthread/Thread.h>\r
6 #include "pthreadwrapper/thread.h"\r
7 \r
8 #define FMS_VERSION     "0.2.0"\r
9 \r
10 // opens database and creates tables and initial inserts if necessary\r
11 void SetupDB();\r
12 void ConvertDB0100To0101();\r
13 void ConvertDB0101To0103();\r
14 void ConvertDB0103To0104();\r
15 // inserts default options into the database\r
16 void SetupDefaultOptions();\r
17 // opens logfile and sets it up\r
18 void SetupLogFile();\r
19 \r
20 // TODO remove sometime after 0.1.17\r
21 void FixCapitalBoardNames();\r
22 \r
23 void SigHandler(int signum);\r
24 \r
25 void MainFunction();\r
26 void Shutdown();\r
27 \r
28 //void StartThreads(std::vector<PThread::Thread *> &threads);\r
29 //void ShutdownThreads(std::vector<PThread::Thread *> &threads);\r
30 \r
31 // needed for Windows to setup network\r
32 void SetupNetwork();\r
33 // cleanup network on Windows\r
34 void ShutdownNetwork();\r
35 \r
36 extern bool wantshutdown;\r
37 \r
38 #endif  // _global_\r