When an exception occurs I get the callstack
if(!GetModuleFileNameA((HMODULE) hMod, szModule, len))
{
return FALSE;
}
szModule is
RtlTryEnterCriticalSection+0x0000000000000052
RtlTimeFieldsToTime+0x00000000000002E0
free+0x000000000000001C
...
What does the Hex number next to the name of the function mean?
0x0000000000000052 0x00000000000002E0 0x000000000000001C
What problem could bring up a callstack like that?