diff options
| author | MarcoFalke <[email protected]> | 2016-03-21 18:29:17 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-04-02 15:26:21 +0200 |
| commit | fabbf80f2f956e056e423f24318e9157367ff569 (patch) | |
| tree | 29cd6a37252053386a071d2a4ffcb8f9a77c0ff4 /src/ui_interface.h | |
| parent | Merge #7691: [Wallet] refactor wallet/init interaction (diff) | |
| download | discoin-fabbf80f2f956e056e423f24318e9157367ff569.tar.xz discoin-fabbf80f2f956e056e423f24318e9157367ff569.zip | |
[ui] Move InitError, InitWarning, AmountErrMsg
Diffstat (limited to 'src/ui_interface.h')
| -rw-r--r-- | src/ui_interface.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ui_interface.h b/src/ui_interface.h index 0b51d52e6..a27918c50 100644 --- a/src/ui_interface.h +++ b/src/ui_interface.h @@ -100,6 +100,14 @@ public: boost::signals2::signal<void (void)> BannedListChanged; }; +/** Show warning message **/ +void InitWarning(const std::string& str); + +/** Show error message **/ +bool InitError(const std::string& str); + +std::string AmountErrMsg(const char* const optname, const std::string& strValue); + extern CClientUIInterface uiInterface; #endif // BITCOIN_UI_INTERFACE_H |