aboutsummaryrefslogtreecommitdiff
path: root/src/init.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-05-13 11:36:10 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2012-05-13 18:41:19 +0200
commit9f5b11e6fd99e30b22be3335dec342acd6a8d28a (patch)
treebef4fd82a5e723ae3943860cbf9ac8a6387877da /src/init.h
parent5e794a9ab7449cee8ea9f2d2e23ff764f71a91c9 (diff)
downloadbitcoin-9f5b11e6fd99e30b22be3335dec342acd6a8d28a.tar.xz
Move help message out of AppInit2
- Solves #1278, attempts to address #1049 - Removes \t's from help message that are removed afterwards anyway - Moves UI-specific command-line options help to UI code - Moves "-detachdb" out of #ifdef USE_UPNP
Diffstat (limited to 'src/init.h')
-rw-r--r--src/init.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/init.h b/src/init.h
index 0a2f0d8932..9a8f98cce9 100644
--- a/src/init.h
+++ b/src/init.h
@@ -11,6 +11,7 @@ extern CWallet* pwalletMain;
void Shutdown(void* parg);
bool AppInit(int argc, char* argv[]);
-bool AppInit2(int argc, char* argv[]);
+bool AppInit2();
+std::string HelpMessage();
#endif