sdaiGetADBTypePathx

This call is deprecated, please use call sdaiGetADBTypePath(..) instead.

Syntax

public const string enginedll = @"engine.dll";

[DllImport(enginedll, EntryPoint = "sdaiGetADBTypePathx")]
public static extern IntPtr x86_sdaiGetADBTypePathx(Int32 ADB, Int32 typeNameNumber, out IntPtr path);

[DllImport(enginedll, EntryPoint = "sdaiGetADBTypePathx")]
public static extern IntPtr x64_sdaiGetADBTypePathx(Int64 ADB, Int64 typeNameNumber, out IntPtr path);

public static IntPtr sdaiGetADBTypePathx(Int64 ADB, Int64 typeNameNumber, out IntPtr path)
		{
			if (IntPtr.Size == 4)
			{
				var _result = x86_sdaiGetADBTypePathx((Int32)ADB, (Int32)typeNameNumber, out IntPtr _path);
				path = _path;
				return _result;
			}
			else
			{
				return x64_sdaiGetADBTypePathx(ADB, typeNameNumber, out path);
			}
		}    

Property ADB

Size: 64 bit / 8 byte (reference)
...

Property typeNameNumber

Size: 64 bit / 8 byte (value)
...

Property path

Size: 64 bit / 8 byte (reference)
???.