From 66cc55e3e3c297d5894fc237cf05f6f5aa438b07 Mon Sep 17 00:00:00 2001 From: Steven Edwards Date: Fri, 27 Jun 2003 21:33:25 +0000 Subject: [PATCH] Remove unneed windows.h svn path=/trunk/; revision=4983 --- reactos/tools/wmc/windows.h | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 reactos/tools/wmc/windows.h diff --git a/reactos/tools/wmc/windows.h b/reactos/tools/wmc/windows.h deleted file mode 100644 index 0c8a7d4b6f8..00000000000 --- a/reactos/tools/wmc/windows.h +++ /dev/null @@ -1,35 +0,0 @@ -#include -typedef wchar_t WCHAR; -typedef unsigned short int WORD; -typedef unsigned int UINT; -typedef unsigned int DWORD; -typedef char CHAR; -typedef CHAR *LPSTR; -typedef WCHAR *LPWSTR; -typedef const CHAR *LPCSTR; -typedef const WCHAR *LPCWSTR; -typedef unsigned int *LPBOOL; - -#ifndef __unix__ -#define STDCALL __attribute__((stdcall)) -#else -#define STDCALL -#endif - -int STDCALL MultiByteToWideChar( - UINT CodePage, - DWORD dwFlags, - LPCSTR lpMultiByteStr, - int cbMultiByte, - LPWSTR lpWideCharStr, - int cchWideChar); - -int STDCALL WideCharToMultiByte( - UINT CodePage, - DWORD dwFlags, - LPCWSTR lpWideCharStr, - int cchWideChar, - LPSTR lpMultiByteStr, - int cbMultiByte, - LPCSTR lpDefaultChar, - LPBOOL lpUsedDefaultChar);