I got the next c function:
long _stdcall _MakePipeString(char *szOut, long nOutChars, const char *szXmlFile, long nOptions);
And I try to use pInvioke like this:
[DllImport("diXo10.dll")]
public static extern long _MakePipeString(out StringBuilder szOut, out long nOutChars, string szXmlFile, long nOptions);
But i get null in the ouput variable szOut.
Am I doing wrong?
Please help.