aboutsummaryrefslogtreecommitdiff
path: root/src/init.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/init.h')
-rw-r--r--src/init.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/init.h b/src/init.h
index 2f56923055..52daa47616 100644
--- a/src/init.h
+++ b/src/init.h
@@ -14,7 +14,6 @@ namespace boost {
class thread_group;
};
-extern std::string strWalletFile;
extern CWallet* pwalletMain;
void StartShutdown();
@@ -29,6 +28,9 @@ enum HelpMessageMode
HMM_BITCOIN_QT
};
+/** Help for options shared between UI and daemon (for -help) */
std::string HelpMessage(HelpMessageMode mode);
+/** Returns licensing information (for -version) */
+std::string LicenseInfo();
#endif