mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 12:23:25 +00:00
Added Lock and Heap Info struc's.
svn path=/trunk/; revision=10500
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/* $Id: rtl.h,v 1.47 2004/08/09 19:41:13 jimtabor Exp $
|
||||
/* $Id: rtl.h,v 1.48 2004/08/11 21:03:11 jimtabor Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -92,6 +92,18 @@ typedef struct _DEBUG_LOCK_INFORMATION {
|
||||
} DEBUG_LOCK_INFORMATION, *PDEBUG_LOCK_INFORMATION;
|
||||
|
||||
|
||||
typedef struct _LOCK_INFORMATION
|
||||
{
|
||||
ULONG LockCount;
|
||||
DEBUG_LOCK_INFORMATION LockEntry[1];
|
||||
} LOCK_INFORMATION, *PLOCK_INFORMATION;
|
||||
|
||||
typedef struct _HEAP_INFORMATION
|
||||
{
|
||||
ULONG HelpCount;
|
||||
DEBUG_HEAP_INFORMATION HeapEntry[1];
|
||||
} HEAP_INFORMATION, *PHEAP_INFORMATION;
|
||||
|
||||
|
||||
typedef struct _CRITICAL_SECTION_DEBUG
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user