search for: setwindowshookex

Displaying 2 results from an estimated 2 matches for "setwindowshookex".

2011 Oct 17
2
Functionality with SetWindowsHookEx WH_JOURNALPLAYBACK
Hello, I am trying to run our own Delphi Application with wine 1.2 on Kubuntu. Applications runs without any problems but Functionality of stuffing keys with setWindowsHookEx(WH_JOURNALPLAYBACK, @Playback, hInstance, 0); is not working at all. Can somebody suggest any work around for this ? If any code changes are needed we can do the same since we have sources of application with us. Since application is Data Entry Centric this functionality is Vital to Client and ca...
2009 Aug 06
1
WH_KEYBOARD_LL vs GetKeyState
...if(ToAscii(key->vkCode, key->scanCode, keyState, &chars, 0)) { if((char)chars == '\r') putchar('\n'); else putchar(chars); } } return CallNextHookEx(NULL, nCode, wParam, lParam); } int main(int argc, char** argv) { HHOOK hhk = SetWindowsHookEx(WH_KEYBOARD_LL, LowLevelKeyboardProc, GetModuleHandle(NULL), 0); MSG msg; while(GetMessage(&msg, NULL, 0, 0) > 0); UnhookWindowsHookEx(hhk); return 0;