I set a breakpoint in the ExitInstance method and it never
breaks.
This is my definition in my CPP file:
int CCMSDesktopApp::ExitInstance()
{
// Release COM
CoUninitialize();
if (m_pListMgr)
{
delete m_pListMgr;
}
return CWinApp::ExitInstance();
}
In my h file I declare:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CCMSDesktopApp)
public:
virtual BOOL InitInstance();
virtual int ExitInstance();
//}}AFX_VIRTUAL
Any ideas on what might be happening here?
Thanks,
-Rob
In message <089301c3a4f5$fd2307a0$a101...@phx.gbl>, Rob C
<anon...@discussions.microsoft.com> writes
--
Fenster
Joseph M. Newcomer [MVP]
email: newc...@flounder.com
Web: http://www.flounder.com
MVP Tips: http://www.flounder.com/mvp_tips.htm
Regards,
-Rob
>.
>
Joseph M. Newcomer [MVP]
"Rob C" <anon...@discussions.microsoft.com> wrote in message
news:038201c3a674$ab9287f0$a301...@phx.gbl...