Both ntstatus.h and winnt.h contain buggy #define DBG_PRINTEXCEPTION_WIDE_C ((DWORD)(0x4001000A)
ntstatus.h
winnt.h
#define DBG_PRINTEXCEPTION_WIDE_C ((DWORD)(0x4001000A)
Should obviously be #define DBG_PRINTEXCEPTION_WIDE_C ((DWORD)0x4001000A)
#define DBG_PRINTEXCEPTION_WIDE_C ((DWORD)0x4001000A)
Well, ntstatus.h casts the constant to NTSTATUS, but in the same buggy way.
NTSTATUS
Fixed by commit 749e811
Log in to post a comment.
Well,
ntstatus.hcasts the constant toNTSTATUS, but in the same buggy way.Fixed by commit 749e811