求教:在程序循环中怎么响应按键?谢谢啦!
我基于win32 console application建立的单文档实现了一下功能。
#include <conio.h>
#include <stdio.h>
void main( void )
{
/* Display message until key is pressed. */
while( !_kbhit() )
_cputs( "Hit me!! " );
/* Use _getch to throw key away. */
printf( "\nKey struck was '%c'\n", _getch() );
// _getch();
}
可是基于MFV AppWizard.exe建立的单文档怎么实现这个功能呢?
绞尽脑汁还是没有成功。
请大虾给与指教,谢谢!