diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-10-05 23:12:42 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-10-06 11:15:43 +0200 |
commit | 9556ba0d66bd1ec76d15feaadee8e10355912497 (patch) | |
tree | 120d691a64d2014a60a481ee46bc73f08223da9d /src/common/util.h | |
parent | Merge pull request #4492 (diff) | |
download | monero-9556ba0d66bd1ec76d15feaadee8e10355912497.tar.xz |
Merge pull request #4390
a0613532 secure_pwd_reader: Add proper Unicode handling [Ryo contribution] (fireice-uk)
579383c2 simplewallet: Add Unicode input_line [Ryo backport] (fireice-uk)
Diffstat (limited to 'src/common/util.h')
-rw-r--r-- | src/common/util.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/util.h b/src/common/util.h index 0e0b50520..ce773bd38 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -235,4 +235,7 @@ namespace tools boost::optional<std::pair<uint32_t, uint32_t>> parse_subaddress_lookahead(const std::string& str); std::string glob_to_regex(const std::string &val); +#ifdef _WIN32 + std::string input_line_win(); +#endif } |