For DevKit_DLL

02/03/2021 10:55 emre064#1
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.

[Only registered and activated users can see links. Click Here To Register...]
02/03/2021 14:11 LegendarySouL#2
You using last version dev kit ?
02/03/2021 14:31 emre064#3
Yes bro, I'm today download it from florian0's gitlabs
02/03/2021 17:27 NorseGodTyr#4
Quote:
Originally Posted by emre064 View Post
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.

[Only registered and activated users can see links. Click Here To Register...]
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
}
}
02/03/2021 19:19 emre064#5
Quote:
Originally Posted by NorseGodTyr View Post
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
}
}
Thank you bro <3