Previous Next

RemoveEntryList

The RemoveEntryList routine resets the links for an entry from a doubly linked, driver-managed list.

VOID 
  RemoveEntryList(
    IN PLIST_ENTRY  Entry
    );

Parameters

Entry
Pointer to the entry.

Return Value

None

Headers

Declared in wdm.h and ntddk.h. Include wdm.h or ntddk.h.

Comments

Callers of RemoveEntryList can be running at IRQL >= DISPATCH_LEVEL only if the caller-allocated storage for Entry is resident.

RemoveEntryList sets the forward and backward links for the entry to each other.

See Also

InitializeListHead, IsListEmpty, RemoveHeadList, RemoveTailList