sdaiReindexArray
Syntax
public const string enginedll = @"engine.dll"; [DllImport(enginedll, EntryPoint = "sdaiReindexArray")] public static extern void x86_sdaiReindexArray(Int32 array); [DllImport(enginedll, EntryPoint = "sdaiReindexArray")] public static extern void x64_sdaiReindexArray(Int64 array); public static void sdaiReindexArray(Int64 array) { if (IntPtr.Size == 4) { x86_sdaiReindexArray((Int32)array); } else { x64_sdaiReindexArray(array); } }
Property array
Size: 64 bit / 8 byte (reference)???.