I need to perform some operations just after the applications starts and right before it quits (some kind of automated memory leaks detection using UMDH).
I've prepared DLL, that is injected to all process and on DLL_PROCESS_ATTACH I'm performing my first operation (just after the application starts) - so this part of my problem is solved.
Problem is with the second part - perform the operation when the process is about to exit.
I've tried it in DLL_PROCESS_DETACH, but this is too late, i need to hook earlier.
Using Windows Hooks mechanism, I've hooked on the WH_GETMESSAGE:
hhk = SetWindowsHookEx(WH_GETMESSAGE, (HOOKPROC) &GetMsgProc, NULL , GetCurrentThreadId());
And GetMsgProc() function:
LRESULT CALLBACK GetMsgProc(int nCode,WPARAM wParam,LPARAM lParam)
{
if( nCode == HC_ACTION )
{
PMSG msg = (PMSG) lParam;
if( msg->message == WM_CLOSE )
{
OutputDebugString(L"WM_CLOSE");
}
if( msg->message == WM_QUIT )
{
OutputDebugString(L"WM_QUIT");
}
if( msg->message == WM_DESTROY )
{
OutputDebugString(L"WM_DESTROY");
}
}
return CallNextHookEx(hhk, nCode, wParam, lParam);
}
But using this method, I'm detecting only WM_CLOSE message (when I will close the application using "X" button). I don't know why I'm not detecting WM_QUIT message, never.
Any ideas, how to perform some operations when application is about to quit?
(I know about Detours, but can't use them in my project...)
ExitProcessfunction atDLL_PROCESS_ATTACHstage. – Jay Jul 25 '12 at 23:12