In my application I created two procedures namely callbackwnd procedure to handle focus events and mouse procedure to handle mouse click events.when I unhook the two procedure the application will flicker little bit.how to overcome this?

I also like to know which procedure is first to use unhook function ?

Regards, Karthik

link|improve this question

Windows, Linux? Where? What language? – leppie Feb 22 '11 at 6:54
in Windows only – karthik Feb 22 '11 at 7:01
feedback

1 Answer

up vote 0 down vote accepted

You can unhook any procedure at any time.preferably unhook the procedure while closing the window(WM_CLOSE).

The flickering may happened due to unhooking the function twice.

link|improve this answer
1  
You haven't mentioned about flickering problem that happened while closing the window. – karthik Feb 22 '11 at 9:57
1  
will this reduce the code optimization? – karthik Feb 22 '11 at 10:00
this will not reduce the code complexity – karthik Feb 22 '11 at 10:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.