// wdm.h
VOID ExDeleteLookasideListEx(
[in, out] PLOOKASIDE_LIST_EX Lookaside
);
View the official Windows Driver Kit DDI reference
No description available.
The ExDeleteLookasideListEx routine deletes a lookaside list.
Lookaside
[in, out]A pointer to a LOOKASIDE_LIST_EX structure that describes a lookaside list. This structure was previously initialized by the ExInitializeLookasideListEx routine.
ExDeleteLookasideListEx is the reciprocal of the ExInitializeLookasideListEx routine. It frees any remaining entries in the specified lookaside list and then removes the list from the system-wide set of active lookaside lists.
On return from ExDeleteLookasideListEx, the caller is responsible for releasing, if necessary, the caller-supplied storage for the LOOKASIDE_LIST_EX structure.
For more information about lookaside lists, see Using Lookaside Lists.