Quote:
Originally Posted by emre064
Hello guys, who can help me for this problem? I builded DevKit_DLL but i can't import to SRO_Client, Stud PE give to me Error: Not MZ, pleas help me.
I builded wtih RelWithDebInfo but i can't import it.

|
check if in your DllMain.ccp this for the export
extern "C" _declspec(dllexport) BOOL WINAPI DllMain(HINSTANCE hModule, DWORD fdwReason, LPVOID lpReserved)
{
if (fdwReason == DLL_PROCESS_ATTACH)
{
//AllocConsole();
// Setup all the required hooks
Setup();
// Inject all the new objects
// Codes
}
}