From 7f18b5b5ea675aa7ec13809223776c2b510d0baa Mon Sep 17 00:00:00 2001 From: arpi Date: Wed, 20 Mar 2002 22:31:52 +0000 Subject: [PATCH] allow LPSTR typedef git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5234 b3059339-0415-0410-9bf9-f77b7e298cf2 --- loader/wine/winnt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/loader/wine/winnt.h b/loader/wine/winnt.h index 478f8b78f8..401c39889c 100644 --- a/loader/wine/winnt.h +++ b/loader/wine/winnt.h @@ -81,7 +81,7 @@ /* These types are _not_ defined for the emulator, because they */ /* depend on the UNICODE macro that only exists in user's code. */ -#ifndef __WINE__ +//#ifndef __WINE__ # ifdef UNICODE typedef WCHAR TCHAR, *PTCHAR; typedef LPWSTR PTSTR, LPTSTR; @@ -93,7 +93,7 @@ typedef LPSTR PTSTR, LPTSTR; typedef LPCSTR PCTSTR, LPCTSTR; #define __TEXT(string) string # endif /* UNICODE */ -#endif /* __WINE__ */ +//#endif /* __WINE__ */ #define TEXT(quote) __TEXT(quote) typedef BYTE BOOLEAN;