From 3beff4f5a33e3360fd7cc5542f40042ccad7cf1f Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Thu, 18 Dec 2003 14:07:41 +0000 Subject: [PATCH] Fixed compilation with __USE_W32API. svn path=/trunk/; revision=7118 --- reactos/include/WinError.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/reactos/include/WinError.h b/reactos/include/WinError.h index f9629d9196b..6fc162864aa 100644 --- a/reactos/include/WinError.h +++ b/reactos/include/WinError.h @@ -11,6 +11,12 @@ #ifndef WINERROR_H #define WINERROR_H +#ifdef __USE_W32API + +#include_next + +#else + #include /* Current locations of reactos errors */ /* Used generally */ @@ -30,4 +36,6 @@ * of digits, and so collides with the network numbers. */ #define DNS_ERROR_NUMERIC_NAME 9561 +#endif /* __USE_W32API */ + #endif//WINERROR_H