]>
Commit | Line | Data |
---|---|---|
8bd66202 | 1 | // Copyright (c) 2009-2010 Satoshi Nakamoto |
88216419 | 2 | // Copyright (c) 2009-2012 The Bitcoin developers |
8bd66202 GA |
3 | // Distributed under the MIT/X11 software license, see the accompanying |
4 | // file license.txt or http://www.opensource.org/licenses/mit-license.php. | |
223b6f1b WL |
5 | #ifndef BITCOIN_INIT_H |
6 | #define BITCOIN_INIT_H | |
8bd66202 | 7 | |
ed6d0b5f PW |
8 | #include "wallet.h" |
9 | ||
64c7ee7e PW |
10 | extern CWallet* pwalletMain; |
11 | ||
8bd66202 | 12 | void Shutdown(void* parg); |
b6dc3b51 SN |
13 | bool AppInit(int argc, char* argv[]); |
14 | bool AppInit2(int argc, char* argv[]); | |
223b6f1b | 15 | |
f18a119a MC |
16 | bool GetStartOnSystemStartup(); |
17 | bool SetStartOnSystemStartup(bool fAutoStart); | |
18 | ||
223b6f1b | 19 | #endif |