internalGetP21Line

Returns the line STEP/Express ID of an instance

Syntax

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

[DllImport(enginedll, EntryPoint = "internalGetP21Line")]
public static extern Int64 x86_internalGetP21Line(Int32 instance);

[DllImport(enginedll, EntryPoint = "internalGetP21Line")]
public static extern Int64 x64_internalGetP21Line(Int64 instance);

public static Int64 internalGetP21Line(Int64 instance)
		{
			if (IntPtr.Size == 4)
			{
				var _result = x86_internalGetP21Line((Int32)instance);
				return _result;
			}
			else
			{
				return x64_internalGetP21Line(instance);
			}
		}    

Property instance

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