Implement RtlInsertHeadList() and RtlInsertTailList()
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2022-08-16 19:01:23 +02:00
parent ba8b9684ff
commit 14fafa2517
2 changed files with 58 additions and 0 deletions

View File

@@ -22,6 +22,16 @@ XTINLINE
VOID
RtlInitializeListHead32(IN PLIST_ENTRY32 ListHead);
XTINLINE
VOID
RtlInsertHeadList(IN OUT PLIST_ENTRY ListHead,
IN OUT PLIST_ENTRY Entry);
XTINLINE
VOID
RtlInsertTailList(IN OUT PLIST_ENTRY ListHead,
IN OUT PLIST_ENTRY Entry);
XTINLINE
BOOLEAN
RtlListEmpty(PLIST_ENTRY ListHead);