Hi everyone,
My MFC program stops at the following debugbreak when I start it:
4294813649 PID:a1ef5b5a TID:e1e68756 0x81e4b000: Unknown: DEBUGCHK failed in
file d:\jameson\private\winceos\coreos\gwe\controls\imgctl\.\imagelist.cpp
at line 905
and the code jumps to kfuncs.h, line 102 where it calls "debugbreak();"
#elif defined(x86)
_inline void DebugBreak() {
__asm int 3
}
I checked my pc and I don't have any imagelist file, but I have a imgctl lib
file. If I press F5, the application starts as is nothing has happened. But
I can't do the same with a release build, the application doesn't start.
This Debugbreak comes after the CChildView::OnCreate() returns 0 and before
CMyApp::InitInstance
{
................
pFrame->ShowWindow(m_nCmdShow);
pFrame->UpdateWindow();
}
lines are executed. I can't go with F11 until I find the debugbreak cal
because at some stage the CEPC restarts itself and the PB loses connection.
The same restart occurs when I want to debug my code using eVC and the
emulator. I have 2 threads
How can I solve this? Please help me.
Selin