sdaiResetArrayIndex

The function shall resizes the specified array instance setting the lower and upper index with the specified values.

Syntax

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

[DllImport(enginedll, EntryPoint = "sdaiResetArrayIndex")]
public static extern void x86_sdaiResetArrayIndex(Int32 array, Int32 lower, Int32 upper);

[DllImport(enginedll, EntryPoint = "sdaiResetArrayIndex")]
public static extern void x64_sdaiResetArrayIndex(Int64 array, Int64 lower, Int64 upper);

public static void sdaiResetArrayIndex(Int64 array, Int64 lower, Int64 upper)
		{
			if (IntPtr.Size == 4)
			{
				x86_sdaiResetArrayIndex((Int32)array, (Int32)lower, (Int32)upper);
			}
			else
			{
				x64_sdaiResetArrayIndex(array, lower, upper);
			}
		}    

Property array

Size: 32 bit / 4 byte (reference)
???.

Property lower

Size: 32 bit / 4 byte (value)
???.

Property upper

Size: 32 bit / 4 byte (value)
???.