000
06.04.2020, 14:26 Uhr
Mike85Dev
|
Hallo,
ich hab eine DLL namens USkin.dll und will sie mit LoadLibrary laden. Das funktioniert auch so weit, aber wenn die Funktion geladen wird, stürtzt das Programm ab. Der Code sieht so aus:
HINSTANCE hGetProcIDDLL = LoadLibrary("USkin.dll");
typedef long (__declspec(dllexport) *USKININIT)(LPCTSTR, LPCTSTR, LPCTSTR); USKININIT USkinInit = (USKININIT) GetProcAddress(hGetProcIDDLL, "USkinInit");
USkinInit("","","BluePaper.msstyles"); // Hier stürtzt er ab ???
Danke !!! |