Wie würde diese C-API-Deklaration in C# importiert werden?
const char* _stdcall z4LLkGetKeySTD(void);
Ich habe es bis hierher geschafft:
[DllImport("zip4_w32.dll",
CallingConvention = CallingConvention.StdCall,
EntryPoint = "z4LLkGetKeySTD",
ExactSpelling = false)]
private extern static const char* z4LLkGetKeySTD();