Hallo ich versuche derzeit den autoit code:
in c++ zu übersetzen.
Vortschritte:
#update 1 void
#update 2 Loadlibrary
Code:
Func _SkinGUI($SkincrafterDll, $SkincrafterSkin, $Handle) $Dll = DllOpen($SkincrafterDll) DllCall($Dll, "int:cdecl", "InitLicenKeys", "wstr", "SKINCRAFTER", "wstr", "SKINCRAFTER.COM", "wstr", "[Only registered and activated users can see links. Click Here To Register...]", "wstr", "DEMOSKINCRAFTERLICENCE") DllCall($Dll, "int:cdecl", "InitDecoration", "int", 1) DllCall($Dll, "int:cdecl", "LoadSkinFromFile", "wstr", $SkincrafterSkin) DllCall($Dll, "int:cdecl", "DecorateAs", "int", $Handle, "int", 25) DllCall($Dll, "int:cdecl", "ApplySkin") EndFunc
Vortschritte:
#update 1 void
#update 2 Loadlibrary
Code:
void _SkinGUI(char *SkincrafterDll, char *SkincrafterSkin, DWORD Handle)
{
HINSTANCE SkinDLL;
SkinDLL = LoadLibrary(TEXT("Skin.dll"));
}