Remove unused includes.
[novacoin.git] / src / init.h
index 8089482..84f2712 100644 (file)
@@ -5,13 +5,13 @@
 #ifndef BITCOIN_INIT_H
 #define BITCOIN_INIT_H
 
-extern CWallet* pwalletMain;
+#include "wallet.h"
 
+extern CWallet* pwalletMain;
+extern std::string strWalletFileName;
+void StartShutdown();
 void Shutdown(void* parg);
-bool AppInit(int argc, char* argv[]);
-bool AppInit2(int argc, char* argv[]);
-
-bool GetStartOnSystemStartup();
-bool SetStartOnSystemStartup(bool fAutoStart);
+bool AppInit2();
+std::string HelpMessage();
 
 #endif