Update CMakeLists.txt - play with openssl
[novacoin.git] / src / init.h
index f038d7b..e2f3d25 100644 (file)
@@ -5,14 +5,15 @@
 #ifndef BITCOIN_INIT_H
 #define BITCOIN_INIT_H
 
-extern CWallet* pwalletMain;
+#include <string>
+
+class CWallet;
 
+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