How to get the file name that failed to load from EXCEPTION_RECORD?

478 Views Asked by At

I registered vectored exception handler. Using this article I manage to get the object's name from EXCEPTION_POINTERS structure pExceptionInfo:

char* objectName = (char*)(((DWORD*****)pExceptionInfo->ExceptionRecord->ExceptionInformation[2])[3][1][1]+2)

The object's name that I get is .PAVEEFileLoadException@@. So, as I understand it failed to load some kind of file. Is there any way to get the name of the file from EXCEPTION_RECORD or any other structure?

0

There are 0 best solutions below