c - Why getAsyncKeyState() doesn't work well in cmd with quick edit mode -


int getmouseclicked()//if mouse_l_button clicked -> return 1; {     if (getasynckeystate(vk_lbutton) < 0) {         return 1;     }     return 0; } 

when using getasynckeystate() input mouse left button, in test, cmd change select mode after clicked mouse left button. , doesn't print out message called printf() or puts() until press enter or esc. after turn off quick edit mode, print out message after clicked.

why doesn't work in quick edit mode when use getasynckeystate()?


Comments

Popular posts from this blog

java - Oracle EBS .ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class ERROR -

c# - how to use buttonedit in devexpress gridcontrol -

nvd3.js - angularjs-nvd3-directives setting color in legend as well as in chart elements -