aboutsummaryrefslogtreecommitdiff
path: root/src/init.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/init.h')
-rw-r--r--src/init.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/init.h b/src/init.h
index 2f56923055..626525c9ad 100644
--- a/src/init.h
+++ b/src/init.h
@@ -12,9 +12,8 @@ class CWallet;
namespace boost {
class thread_group;
-};
+} // namespace boost
-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