List_Get_First

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
Handle of the list. The handle must have been previously created using the List_Create service.

See Also

List_Attach, List_Create, List_Get_Next