I need to break the message loop in win32 keyboard hook. The loop look like this,
MSG msg;
while (GetMessage(&msg, NULL, NULL, NULL))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
I used unhook method but it doesn't work. and I have another Question that if I change while loop parameter to !GetMessage it work same as before. and if I add printf inside that while loop its not printing anything. I just want to make a dll for keyboard hook. and method in dll need to end. with this(message loop) I cant end(or return something) that method.
Sorry for my bad English.
Thanks.