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
This commit is contained in:
Wladimir J. van der Laan
2012-05-13 11:36:10 +02:00
parent 5e794a9ab7
commit 9f5b11e6fd
3 changed files with 185 additions and 131 deletions

View File

@@ -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