#include <wdm.h>
#include "cbm_driver.h"
#include "../../arch/windows/debug.c"
Go to the source code of this file.
Defines | |
| #define | min(_x, _y) ( ((_x) < (_y)) ? (_x) : (_y) ) |
| #define | REPORT_BUG(_no, _a, _b, _c, _d, _str) |
| #define | DEFINE_STATUSCODE(_x) { #_x, _x } |
| #define | _MARKLASTENTRY ((NTSTATUS) -1) |
| #define | _LASTENTRY { "", _MARKLASTENTRY } |
Typedefs | |
| typedef NTSTATUS_DEBUGCODE | NTSTATUS_DEBUGCODE |
Functions | |
| const UCHAR * | DebugNtStatus (NTSTATUS Value) |
| Return the description of an NTSTATUS code. | |
Variables | |
| const NTSTATUS_DEBUGCODE | text [] |
**************************************************************
Definition in file sys/libcommon/debug.c.
|
|
this marks the last entry of the array Definition at line 66 of file sys/libcommon/debug.c. |
|
|
This mark is used as value for the last entry of the array Definition at line 63 of file sys/libcommon/debug.c. Referenced by DebugNtStatus(). |
|
|
Define one NTSTATUS entry Definition at line 60 of file sys/libcommon/debug.c. |
|
|
find the minimum of both parameters Definition at line 32 of file sys/libcommon/debug.c. |
|
|
Value: DbgPrint("--- REPORT_BUG: %04x (%08x, %08x, %08x, %08x). '%s' " \ "in %s, %s(), line %u\n", \ _no, _a, _b, _c, _d, _str, \ __FILE__, __FUNCTION__, __LINE__); Definition at line 38 of file sys/libcommon/debug.c. |
|
|
one descriptional entry for the NTSTATUS codes |
|
|
Return the description of an NTSTATUS code. Searches in the NTSTATUS array for the supplied value, and returns a description for it if it finds some.
Definition at line 1012 of file sys/libcommon/debug.c. References _MARKLASTENTRY, and NTSTATUS_DEBUGCODE::Name. Referenced by AddDevice(), cbmiec_i_raw_write(), ParPortSetModeWdm(), and ParPortUnsetModeWdm(). |
|
|
The array of NTSTATUS codes Definition at line 70 of file sys/libcommon/debug.c. |
1.4.2