6086af6d02953a71d6a2dd2f91ca17c6e551392b
[reactos.git] / reactos / include / ntos / dbgfuncs.h
1 #ifndef __INCLUDE_NTOS_DBGFUNCS_H
2 #define __INCLUDE_NTOS_DBGFUNCS_H
3 /* $Id$ */
4
5 #define DBG_STATUS_CONTROL_C 1
6 #define DBG_STATUS_SYSRQ 2
7 #define DBG_STATUS_BUGCHECK_FIRST 3
8 #define DBG_STATUS_BUGCHECK_SECOND 4
9 #define DBG_STATUS_FATAL 5
10
11
12 #define DBG_GET_SHOW_FACILITY 0x0001
13 #define DBG_GET_SHOW_SEVERITY 0x0002
14 #define DBG_GET_SHOW_ERRCODE 0x0004
15 #define DBG_GET_SHOW_ERRTEXT 0x0008
16 VOID DbgGetErrorText(NTSTATUS ErrorCode, PUNICODE_STRING ErrorText, ULONG Flags);
17 VOID DbgPrintErrorMessage(NTSTATUS ErrorCode);
18
19 #endif /* __INCLUDE_NTOS_DBGFUNCS_H */