From 791019b4b4b3813916facfc07a561d85795b2808 Mon Sep 17 00:00:00 2001 From: Steven Edwards Date: Sat, 3 Jan 2004 23:20:11 +0000 Subject: [PATCH] Remove wineros.h. The world is better off without it. svn path=/trunk/; revision=7442 --- reactos/include/wine/port.h | 4 ---- reactos/include/wine/wineros.h | 40 ---------------------------------- 2 files changed, 44 deletions(-) delete mode 100644 reactos/include/wine/wineros.h diff --git a/reactos/include/wine/port.h b/reactos/include/wine/port.h index 7412c1de658..c73c960dde0 100644 --- a/reactos/include/wine/port.h +++ b/reactos/include/wine/port.h @@ -25,10 +25,6 @@ # error You must include config.h to use this header #endif -#ifdef __REACTOS__ -#include "wineros.h" /* Remove in the future */ -#endif /* __REACTOS__ */ - #define _GNU_SOURCE /* for pread/pwrite */ #include #include diff --git a/reactos/include/wine/wineros.h b/reactos/include/wine/wineros.h deleted file mode 100644 index bf51fd84ea0..00000000000 --- a/reactos/include/wine/wineros.h +++ /dev/null @@ -1,40 +0,0 @@ -/* Missing Defines and structures - * These are either missing from the w32api package - * the ReactOS build system is broken and needs to - * fixed. - */ - -/* Wine wrapper for ReactOS */ -#ifndef __REACTOS_WINE_WINEROS_H -#define __REACTOS_WINE_WINEROS_H - -typedef unsigned short u_short; -typedef unsigned long u_long; - -typedef signed char INT8, *PINT8; -typedef signed short INT16, *PINT16; -typedef signed int INT32, *PINT32; -typedef unsigned char UINT8, *PUINT8; -typedef unsigned short UINT16, *PUINT16; -typedef unsigned int UINT32, *PUINT32; -typedef signed int LONG32, *PLONG32; -typedef unsigned int ULONG32, *PULONG32; -typedef unsigned int DWORD32, *PDWORD32; -typedef INT16 *LPINT16; -typedef UINT16 *LPUINT16; - -#ifndef HFILE_ERROR -#define HFILE_ERROR ((HFILE)-1) /* Already in winbase.h - ros is fubar */ -#endif - -#define strncasecmp strncmp -#define snprintf _snprintf -#define strcasecmp _stricmp - -#ifndef FD_SETSIZE -#define FD_SETSIZE 64 -#endif - -#define HAVE_SSIZE_T - -#endif /* __REACTOS_WINE_WINEROS_H */