validateGetAttr

Returns the attribute handle related to the given issue (if relevant).

Syntax

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

[DllImport(enginedll, EntryPoint = "validateGetAttr")]
public static extern Int64 x86_validateGetAttr(Int32 issue);

[DllImport(enginedll, EntryPoint = "validateGetAttr")]
public static extern Int64 x64_validateGetAttr(Int64 issue);

public static Int64 validateGetAttr(Int64 issue)
		{
			if (IntPtr.Size == 4)
			{
				var _result = x86_validateGetAttr((Int32)issue);
				return _result;
			}
			else
			{
				return x64_validateGetAttr(issue);
			}
		}    

Property issue

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