MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / sendLetterKeyPress

Function sendLetterKeyPress

tests/autotester/autotester.cpp:99–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97}
98
99void sendLetterKeyPress(char letter)
100{
101 int retry = 200;
102 do {
103 if (cemucore::sendLetterKeyPress(letter)) {
104 break;
105 }
106 cemucore::emu_run(50);
107 } while(retry--);
108}
109
110typedef std::function<void(const std::string&)> seq_cmd_func_t;
111typedef std::function<void(void)> seq_cmd_action_func_t;

Callers 1

autotester.cppFile · 0.70

Calls 1

emu_runFunction · 0.85

Tested by

no test coverage detected