From f6ee216aae854bd44a75ec2d37a9e45fb5e65c1f Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Tue, 2 Sep 2003 11:14:15 +0000 Subject: [PATCH] Added some splay-tree functions. svn path=/trunk/; revision=5958 --- reactos/include/ntos/rtl.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/reactos/include/ntos/rtl.h b/reactos/include/ntos/rtl.h index 34b792e33f1..bb38147384b 100755 --- a/reactos/include/ntos/rtl.h +++ b/reactos/include/ntos/rtl.h @@ -1,4 +1,4 @@ -/* $Id: rtl.h,v 1.17 2003/08/25 01:37:47 sedwards Exp $ +/* $Id: rtl.h,v 1.18 2003/09/02 11:14:15 ekohl Exp $ * */ @@ -2121,6 +2121,12 @@ VOID STDCALL RtlMapGenericMask (PACCESS_MASK AccessMask, PGENERIC_MAPPING Generi ULONG STDCALL RtlRandom (PULONG Seed); +PRTL_SPLAY_LINKS STDCALL +RtlSubtreePredecessor (IN PRTL_SPLAY_LINKS Links); + +PRTL_SPLAY_LINKS STDCALL +RtlSubtreeSuccessor (IN PRTL_SPLAY_LINKS Links); + ULONG STDCALL RtlUniform (PULONG Seed);