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