Update CMakeLists.txt - play with openssl
[novacoin.git] / src / init.h
index 8089482..e2f3d25 100644 (file)
@@ -5,13 +5,15 @@
 #ifndef BITCOIN_INIT_H
 #define BITCOIN_INIT_H
 
-extern CWallet* pwalletMain;
+#include <string>
 
-void Shutdown(void* parg);
-bool AppInit(int argc, char* argv[]);
-bool AppInit2(int argc, char* argv[]);
+class CWallet;
 
-bool GetStartOnSystemStartup();
-bool SetStartOnSystemStartup(bool fAutoStart);
+extern CWallet* pwalletMain;
+extern std::string strWalletFileName;
+void StartShutdown();
+void Shutdown(void* parg);
+bool AppInit2();
+std::string HelpMessage();
 
 #endif