diff --git a/reactos/w32api/include/ntstatus.h b/reactos/w32api/include/ntstatus.h index fbba0d23801..4e962a558e0 100644 --- a/reactos/w32api/include/ntstatus.h +++ b/reactos/w32api/include/ntstatus.h @@ -26,11 +26,8 @@ * Debug codes */ #define DBG_PRINTEXCEPTION_C ((NTSTATUS)0x40010006L) - -#ifndef _WINNT_H #define DBG_CONTROL_C ((NTSTATUS)0x40010005L) #define DBG_CONTROL_BREAK ((NTSTATUS)0x40010008L) -#endif /* * Exception codes diff --git a/reactos/w32api/include/winnt.h b/reactos/w32api/include/winnt.h index 419eed717d3..ebef39d5289 100644 --- a/reactos/w32api/include/winnt.h +++ b/reactos/w32api/include/winnt.h @@ -210,6 +210,10 @@ typedef DWORD FLONG; #define SPECIFIC_RIGHTS_ALL 0xFFFF #define ACCESS_SYSTEM_SECURITY 0x1000000 +#ifndef WIN32_NO_STATUS +#define DBG_CONTINUE ((DWORD)0x00010002L) +#endif + #define MAXIMUM_ALLOWED 0x2000000 #define GENERIC_READ 0x80000000 #define GENERIC_WRITE 0x40000000 @@ -1251,16 +1255,6 @@ typedef enum #define DLL_PROCESS_ATTACH 1 #define DLL_THREAD_ATTACH 2 #define DLL_THREAD_DETACH 3 -#define DBG_CONTINUE 0x10002 -#define DBG_TERMINATE_THREAD 0x40010003 -#define DBG_TERMINATE_PROCESS 0x40010004 -#ifndef WIN32_NO_STATUS -#ifndef __WINE_NTSTATUS_H -#define DBG_CONTROL_C 0x40010005 -#define DBG_CONTROL_BREAK 0x40010008 -#endif -#define DBG_EXCEPTION_NOT_HANDLED 0x80010001 -#endif #define TAPE_ABSOLUTE_POSITION 0 #define TAPE_LOGICAL_POSITION 1 #define TAPE_PSEUDO_LOGICAL_POSITION 2