diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-06-02 12:27:33 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-06-02 12:27:33 +0000 |
commit | efb42f1aaa721e5aeaa7b9cbf755125ed9d559a7 (patch) | |
tree | 4c78fcc265be1bfc25751cfae0661606527237d6 /loader/wine/winnt.h | |
parent | 4f88dffa130591daa88a30a30e02406b8566a49a (diff) | |
download | mpv-efb42f1aaa721e5aeaa7b9cbf755125ed9d559a7.tar.bz2 mpv-efb42f1aaa721e5aeaa7b9cbf755125ed9d559a7.tar.xz |
Get rid of superfluous __WINE__ #define, it was always enabled and
cluttered the code. Blessed by Reimar.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23448 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader/wine/winnt.h')
-rw-r--r-- | loader/wine/winnt.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/loader/wine/winnt.h b/loader/wine/winnt.h index 0d1d950486..60a937d6e4 100644 --- a/loader/wine/winnt.h +++ b/loader/wine/winnt.h @@ -81,7 +81,6 @@ /* These types are _not_ defined for the emulator, because they */ /* depend on the UNICODE macro that only exists in user's code. */ -//#ifndef __WINE__ # ifdef UNICODE typedef WCHAR TCHAR, *PTCHAR; typedef LPWSTR PTSTR, LPTSTR; @@ -93,7 +92,6 @@ typedef LPSTR PTSTR, LPTSTR; typedef LPCSTR PCTSTR, LPCTSTR; #define __TEXT(string) string # endif /* UNICODE */ -//#endif /* __WINE__ */ #define TEXT(quote) __TEXT(quote) typedef BYTE BOOLEAN; @@ -629,8 +627,6 @@ typedef struct _CONTEXT typedef CONTEXT *PCONTEXT; typedef HANDLE *PHANDLE; -#ifdef __WINE__ - /* Macros for easier access to i386 context registers */ #define EAX_reg(context) ((context)->Eax) @@ -766,8 +762,6 @@ typedef HANDLE *PHANDLE; # error You must define GET_IP for this CPU #endif -#endif /* __WINE__ */ - /* * Exception codes */ |