Windows CE 的 kbhit 等效项

发布于 2024-10-18 05:02:50 字数 385 浏览 1 评论 0原文

我知道这个问题已经之前被问过并且我已经尝试过在谷歌上搜索,但我似乎无法找到合适的答案。

我想要一个我正在编写的控制台应用程序在用户按下按钮时退出。它是用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情话墙 2024-10-25 05:02:50

您是否尝试过getchar()

可能需要使用 SetStdioPathW()。

-保罗H

Have you tried getchar()?

It may be necessary to direct standard input/output to the console using SetStdioPathW().

-PaulH

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文