include vmm.inc
mov esi, List ; list handle
VMMCall List_Get_First
jz empty_list ; zero flag set if list is empty
mov [Node], eax ; address of first node
Returns the address of the first node in a list. Uses EAX, Flags.
List_Attach, List_Create, List_Get_Next