exe has triggered a breakpoint in vc++ mfc

  • Thread starter Thread starter imrankhan12
  • Start date Start date
I

imrankhan12

Guest
Hello All,
I'm developing my MFC application(name abc) in VC++ (visual studio 2008)
When I click close button it gives
"abc.exe has triggered a breakpoint". and it will point to this code of line #undef _CrtDbgBreak

/* These methods don't need a separate
wchar version. Hence they need to be compiled only once from
the original file */

_CRTIMP void _cdecl _CrtDbgBreak(
void
)
{
DebugBreak(); //cursor point to this line
} in dbgrptt.c


I am using some dll in my application through function pointer.

Please suggest.

Continue reading...
 
Back
Top