Update CMakeLists.txt - play with openssl
[novacoin.git] / src / init.h
index 4826ab1..e2f3d25 100644 (file)
@@ -5,12 +5,15 @@
 #ifndef BITCOIN_INIT_H
 #define BITCOIN_INIT_H
 
-#include "wallet.h"
+#include <string>
 
-extern CWallet* pwalletMain;
+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 AppInit2();
+std::string HelpMessage();
 
 #endif