From 6dddb1823b126c10d0d44ca2a625100e9afdf267 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Sat, 12 Feb 2011 09:28:41 +0000 Subject: [PATCH] [NDK] - Add RTL_TRACE_BLOCK structure definition. svn path=/trunk/; revision=50665 --- reactos/include/ndk/rtltypes.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/reactos/include/ndk/rtltypes.h b/reactos/include/ndk/rtltypes.h index 6d393c2b1e0..c211ccada3c 100644 --- a/reactos/include/ndk/rtltypes.h +++ b/reactos/include/ndk/rtltypes.h @@ -1285,6 +1285,18 @@ typedef struct _STACK_TRACE_DATABASE RTL_CRITICAL_SECTION CriticalSection; } STACK_TRACE_DATABASE, *PSTACK_TRACE_DATABASE; +typedef struct _RTL_TRACE_BLOCK +{ + ULONG Magic; + ULONG Count; + ULONG Size; + ULONG UserCount; + ULONG UserSize; + PVOID UserContext; + struct _RTL_TRACE_BLOCK *Next; + PVOID *Trace; +} RTL_TRACE_BLOCK, *PRTL_TRACE_BLOCK; + #ifndef NTOS_MODE_USER //