c++ - kbhit equivalent for Windows CE -
i know question has been asked before , have tried searching on google don't seem able find decent answer this.
i want console application writing exit when user presses button. it's written in c++ , deployed on windows ce6.
currently same code, on xp, uses perform actions until keyboard hit
//app entry while (!_kbhit()) { /* awesome code goes here */ } //app exits here
can me :)
have tried getchar()?
it may necessary direct standard input/output console using setstdiopathw().
-paulh
Comments
Post a Comment