* ntdll.h (STATUS_INVALID_INFO_CLASS): Conditionalize.
This commit is contained in:
parent
372e55957e
commit
a9e36321fd
|
@ -1,3 +1,7 @@
|
|||
2006-05-13 Christopher Faylor <cgf@timesys.com>
|
||||
|
||||
* ntdll.h (STATUS_INVALID_INFO_CLASS): Conditionalize.
|
||||
|
||||
2006-05-10 Brian Dessent <brian@dessent.net>
|
||||
|
||||
* Makefile.in (clean): Also delete *.dbg.
|
||||
|
|
|
@ -8,7 +8,11 @@
|
|||
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
||||
details. */
|
||||
|
||||
#ifndef STATUS_INVALID_INFO_CLASS
|
||||
/* Some w32api header file defines this so we need to conditionalize this
|
||||
define to avoid warnings. */
|
||||
#define STATUS_INVALID_INFO_CLASS ((NTSTATUS) 0xc0000003)
|
||||
#endif
|
||||
#define STATUS_INFO_LENGTH_MISMATCH ((NTSTATUS) 0xc0000004)
|
||||
#define STATUS_INVALID_PARAMETER ((NTSTATUS) 0xc000000d)
|
||||
#define STATUS_BUFFER_TOO_SMALL ((NTSTATUS) 0xc0000023)
|
||||
|
|
Loading…
Reference in New Issue