简体   繁体   中英

how to simulate a escape key at the end of a key sequence in c++?

how to simulate a "escape key" as if an escape key has been pressed, at the end of a string sequence in c++?

i need to provide the stdin input, which accepts string data until Escape key is pressed,

for that it receives the characters correctly, but how do i send an 'escape key stroke' finally?

The ASCII code for "escape" is 27 (= 1b in hex). To send an escape you just have to send that character '\\0x1b' .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM