Revert RTL::LinkedList::RemoveEntryList() routine signature and extend RTL::LinkedList API
All checks were successful
Builds / ExectOS (amd64, debug) (push) Successful in 38s
Builds / ExectOS (i686, debug) (push) Successful in 37s
Builds / ExectOS (amd64, release) (push) Successful in 1m17s
Builds / ExectOS (i686, release) (push) Successful in 1m14s

This commit is contained in:
2026-02-16 15:43:00 +01:00
parent 2af94a1c3b
commit 94a8917c5c
6 changed files with 130 additions and 12 deletions

View File

@@ -763,16 +763,16 @@ RtlMultiplyLargeInteger(IN LARGE_INTEGER Multiplicand,
* @param Entry
* Pointer to the entry that will be removed from the list.
*
* @return This routine returns TRUE if the list is empty after removal, or FALSE otherwise.
* @return This routine does not return any value.
*
* @since XT 1.0
*/
XTCLINK
XTCDECL
BOOLEAN
VOID
RtlRemoveEntryList(IN PLIST_ENTRY Entry)
{
return RTL::LinkedList::RemoveEntryList(Entry);
RTL::LinkedList::RemoveEntryList(Entry);
}
/**