sdaiEnd

This function positions the specified iterator at the end of the ordered aggregate instance members such that there is no current member.

Syntax

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

[DllImport(enginedll, EntryPoint = "sdaiEnd")]
public static extern void x86_sdaiEnd(Int32 iterator);

[DllImport(enginedll, EntryPoint = "sdaiEnd")]
public static extern void x64_sdaiEnd(Int64 iterator);

public static void sdaiEnd(Int64 iterator)
		{
			if (IntPtr.Size == 4)
			{
				x86_sdaiEnd((Int32)iterator);
			}
			else
			{
				x64_sdaiEnd(iterator);
			}
		}    

Property iterator

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