// wdm.h
NTSTATUS ExDeleteResourceLite(
[in, out] PERESOURCE Resource
);
View the official Windows Driver Kit DDI reference
No description available.
The ExDeleteResourceLite routine deletes a given resource from the system's resource list.
Resource
[in, out]A pointer to the caller-supplied storage for the initialized resource variable to be deleted.
ExDeleteResourceLite returns STATUS_SUCCESS if the resource was deleted.
A call to ExDeleteResourceLite must be preceded by a call to ExInitializeResourceLite.
After calling ExDeleteResourceLite, the caller can free the memory it allocated for its resource.
For more information, see ERESOURCE routines.