X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=include%2Fglobal.h;h=69952d18b03f3a0b1faec566e83445c60373a931;hb=9a14c0d9f7f7c319e539583b93664953764e83b7;hp=1eccbcc20f0b3dc4a9366b54af7cef8c9a5fcbf2;hpb=964f55fd550fc711c0320ce6a24ad713040695d0;p=fms.git diff --git a/include/global.h b/include/global.h index 1eccbcc..69952d1 100644 --- a/include/global.h +++ b/include/global.h @@ -1,24 +1,43 @@ #ifndef _global_ #define _global_ +#include #include -#include +#include "pthreadwrapper/thread.h" -#define FMS_VERSION "0.1.2" +#define FMS_VERSION "0.2.15" // opens database and creates tables and initial inserts if necessary void SetupDB(); +void ConvertDB0100To0101(); +void ConvertDB0101To0103(); +void ConvertDB0103To0104(); +void ConvertDB0104To0105(); +void ConvertDB0105To0106(); +void ConvertDB0106To0107(); +void ConvertDB0107To0108(); +void ConvertDB0108To0109(); +void ConvertDB0109To0110(); // inserts default options into the database void SetupDefaultOptions(); // opens logfile and sets it up void SetupLogFile(); -void StartThreads(std::vector &threads); -void ShutdownThreads(std::vector &threads); +std::string CreateShortIdentityName(const std::string &name, const std::string &publickey); + +// TODO remove sometime after 0.1.17 +void FixCapitalBoardNames(); + +void SigHandler(int signum); + +void MainFunction(); +void Shutdown(); // needed for Windows to setup network void SetupNetwork(); // cleanup network on Windows void ShutdownNetwork(); +extern volatile bool wantshutdown; + #endif // _global_