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.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…