mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
- Fix build, sorry.
svn path=/trunk/; revision=17868
This commit is contained in:
parent
fbc3848431
commit
019ed71c23
1 changed files with 14 additions and 1 deletions
|
@ -51,7 +51,7 @@ RtlLeaveHeapLock(PRTL_CRITICAL_SECTION CriticalSection);
|
||||||
|
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
NTAPI
|
NTAPI
|
||||||
RtlpCheckForActiveDebugger(VOID);
|
RtlpCheckForActiveDebugger(BOOLEAN Type);
|
||||||
|
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
NTAPI
|
NTAPI
|
||||||
|
@ -63,6 +63,10 @@ RtlpHandleDpcStackException(IN PEXCEPTION_REGISTRATION_RECORD RegistrationFrame,
|
||||||
#define RtlpAllocateStringMemory RtlpAllocateMemory
|
#define RtlpAllocateStringMemory RtlpAllocateMemory
|
||||||
#define RtlpFreeStringMemory RtlpFreeMemory
|
#define RtlpFreeStringMemory RtlpFreeMemory
|
||||||
|
|
||||||
|
BOOLEAN
|
||||||
|
NTAPI
|
||||||
|
RtlpSetInDbgPrint(IN BOOLEAN NewValue);
|
||||||
|
|
||||||
/* i386/except.S */
|
/* i386/except.S */
|
||||||
|
|
||||||
EXCEPTION_DISPOSITION
|
EXCEPTION_DISPOSITION
|
||||||
|
@ -96,6 +100,15 @@ VOID
|
||||||
NTAPI
|
NTAPI
|
||||||
RtlpCaptureContext(OUT PCONTEXT ContextRecord);
|
RtlpCaptureContext(OUT PCONTEXT ContextRecord);
|
||||||
|
|
||||||
|
/* i386/debug.S */
|
||||||
|
NTSTATUS
|
||||||
|
NTAPI
|
||||||
|
DebugService(IN ULONG Service,
|
||||||
|
IN PVOID Buffer,
|
||||||
|
IN ULONG Length,
|
||||||
|
IN PVOID Argument1,
|
||||||
|
IN PVOID Argument2);
|
||||||
|
|
||||||
/* Tags for the String Allocators */
|
/* Tags for the String Allocators */
|
||||||
#define TAG_USTR TAG('U', 'S', 'T', 'R')
|
#define TAG_USTR TAG('U', 'S', 'T', 'R')
|
||||||
#define TAG_ASTR TAG('A', 'S', 'T', 'R')
|
#define TAG_ASTR TAG('A', 'S', 'T', 'R')
|
||||||
|
|
Loading…
Reference in a new issue