Hey, DLL compiled with /MT crash in x64 crashes instantly before DLL_PROCESS_ATTACH. This is because some CRT functions use RtlPcToFileHeader to get mapped image base. That function walks InvertedFunctionTable which is empty because Dynamic exception table is used instead. You need InvertedFunctionTable support for x64.
Hey, DLL compiled with /MT crash in x64 crashes instantly before DLL_PROCESS_ATTACH. This is because some CRT functions use RtlPcToFileHeader to get mapped image base. That function walks InvertedFunctionTable which is empty because Dynamic exception table is used instead. You need InvertedFunctionTable support for x64.