diff options
author | 2019-07-21 12:35:03 +1000 | |
---|---|---|
committer | 2019-07-21 12:35:03 +1000 | |
commit | dac4ed89a80685fd3a6076eb76d6649df46f02d4 (patch) | |
tree | 217ea69c017fbec45a7c732f5655914aea8a01ea /src/emu/natkeyboard.h | |
parent | d2926fa02cef5bf728eac74c9e5586aced02a80b (diff) | |
parent | 1440861929a344f4bd7f78616854e041f55702d5 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'src/emu/natkeyboard.h')
-rw-r--r-- | src/emu/natkeyboard.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/emu/natkeyboard.h b/src/emu/natkeyboard.h index aa29bf4503c..fa3df156285 100644 --- a/src/emu/natkeyboard.h +++ b/src/emu/natkeyboard.h @@ -53,7 +53,10 @@ public: void post(char32_t ch); void post(const char32_t *text, size_t length = 0, const attotime &rate = attotime::zero); void post_utf8(const char *text, size_t length = 0, const attotime &rate = attotime::zero); + void post_utf8(const std::string &text, const attotime &rate = attotime::zero); void post_coded(const char *text, size_t length = 0, const attotime &rate = attotime::zero); + void post_coded(const std::string &text, const attotime &rate = attotime::zero); + void paste(); // debugging void dump(std::ostream &str) const; |