diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-05-13 11:36:10 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-05-13 18:41:19 +0200 |
| commit | 9f5b11e6fd99e30b22be3335dec342acd6a8d28a (patch) | |
| tree | bef4fd82a5e723ae3943860cbf9ac8a6387877da /src/init.h | |
| parent | release-process.txt: Add a note to check the download link destinations. (diff) | |
| download | discoin-9f5b11e6fd99e30b22be3335dec342acd6a8d28a.tar.xz discoin-9f5b11e6fd99e30b22be3335dec342acd6a8d28a.zip | |
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.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/init.h b/src/init.h index 0a2f0d893..9a8f98cce 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 |