Windows CE 的 kbhit 等效项
我知道这个问题已经之前被问过并且我已经尝试过在谷歌上搜索,但我似乎无法找到合适的答案。
我想要一个我正在编写的控制台应用程序在用户按下按钮时退出。它是用 C++ 编写的,将部署在 Windows CE6 上。
目前,在 XP 上,相同的代码使用它来执行操作,直到按下键盘
//App entry
while (!_kbhit()) { /* Awesome code goes here */ }
//App exits here
任何人都可以帮助我:)
I know this question has been asked before and I have tried searching on Google but I don't seem to be able to find a decent answer to this.
I want a console application I am writing to exit when a user presses a button. It's written in C++ and will be deployed on Windows CE6.
Currently the same code, on XP, uses this to perform actions until the keyboard is hit
//App entry
while (!_kbhit()) { /* Awesome code goes here */ }
//App exits here
Can anyone help me :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过getchar()?
可能需要使用 SetStdioPathW()。
-保罗H
Have you tried getchar()?
It may be necessary to direct standard input/output to the console using SetStdioPathW().
-PaulH