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?