Basic support for double linked lists
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2022-08-13 23:15:06 +02:00
parent 96871fd042
commit f67bc808cc
3 changed files with 77 additions and 0 deletions

View File

@@ -10,9 +10,22 @@
#define __XTKLIB_LIBRTL_H
#include "xtdefs.h"
#include "xtstruct.h"
#include "xttypes.h"
XTINLINE
VOID
RtlInitializeListHead(IN PLIST_ENTRY ListHead);
XTINLINE
VOID
RtlInitializeListHead32(IN PLIST_ENTRY32 ListHead);
XTINLINE
BOOLEAN
RtlListEmpty(PLIST_ENTRY ListHead);
INT
RtlWideStringCompare(IN CONST PWCHAR String1,
IN CONST PWCHAR String2,