sdaiBeginning

The function positions the iterator at the beginning of its associated aggregate instance such that there is no current member.

Syntax

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

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

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

public static void sdaiBeginning(Int64 iterator)
		{
			if (IntPtr.Size == 4)
			{
				x86_sdaiBeginning((Int32)iterator);
			}
			else
			{
				x64_sdaiBeginning(iterator);
			}
		}    

Property iterator

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