Comment faire pour importer const char* API en C#?

Compte tenu de cette API C de la déclaration de comment serait-il importé de C#?

const char* _stdcall z4LLkGetKeySTD(void);

J'ai pu en arriver là:

   [DllImport("zip4_w32.dll",
       CallingConvention = CallingConvention.StdCall,
       EntryPoint = "z4LLkGetKeySTD",
       ExactSpelling = false)]
   private extern static const char* z4LLkGetKeySTD();

OriginalL'auteur Mike Chess | 2009-02-03