sdaiGetADBTypePathx
Syntax
public const string ifcenginedll = @"ifcengine.dll"; [DllImport(IFCEngineDLL, EntryPoint = "sdaiGetADBTypePathx")] public static extern void sdaiGetADBTypePathx(int_t ADB, Int32 typeNameNumber, out IntPtr path); public static string sdaiGetADBTypePathx(int_t ADB, Int32 typeNameNumber) { IntPtr path = IntPtr.Zero; RDF.engine.sdaiGetADBTypePathx(int_tADB, Int32typeNameNumber, out path); return System.Runtime.InteropServices.Marshal.PtrToStringAnsi(path); }