From 38122ff7fe6e4d8a1f284be917ce36dd6809846b Mon Sep 17 00:00:00 2001 From: "Matt Ige (from Dev Box)" Date: Tue, 26 Mar 2024 11:24:48 -0700 Subject: [PATCH] add missing forward declaration Signed-off-by: Matt Ige (from Dev Box) --- inc/usersim/rtl.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/inc/usersim/rtl.h b/inc/usersim/rtl.h index 02d98d2..00a689b 100644 --- a/inc/usersim/rtl.h +++ b/inc/usersim/rtl.h @@ -214,6 +214,8 @@ typedef enum _RTL_GENERIC_COMPARE_RESULTS GenericEqual } RTL_GENERIC_COMPARE_RESULTS; +struct _RTL_AVL_TABLE; + typedef RTL_GENERIC_COMPARE_RESULTS (*PRTL_AVL_COMPARE_ROUTINE)( _In_ struct _RTL_AVL_TABLE* Table, _In_ PVOID FirstStruct, _In_ PVOID SecondStruct);