engiIsAttrInverse
Syntax
public const string enginedll = @"engine.dll"; [DllImport(enginedll, EntryPoint = "engiIsAttrInverse")] public static extern bool x86_engiIsAttrInverse(Int32 attribute); [DllImport(enginedll, EntryPoint = "engiIsAttrInverse")] public static extern bool x64_engiIsAttrInverse(Int64 attribute); public static bool engiIsAttrInverse(Int64 attribute) { if (IntPtr.Size == 4) { var _result = x86_engiIsAttrInverse((Int32)attribute); return _result; } else { return x64_engiIsAttrInverse(attribute); } }