init.h 318 B

12345678910111213141516
  1. // ECOin - Copyright (c) - 2014/2022 - GPLv3 - epsylon@riseup.net (https://03c8.net)
  2. #ifndef ECOIN_INIT_H
  3. #define ECOIN_INIT_H
  4. #include "wallet.h"
  5. extern CWallet* pwalletMain;
  6. extern std::string strWalletFileName;
  7. void StartShutdown();
  8. void Shutdown(void* parg);
  9. bool AppInit2();
  10. std::string HelpMessage();
  11. #endif