summaryrefslogtreecommitdiffstats
path: root/loader/wine
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-23 14:50:55 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-23 14:50:55 +0000
commitbb7b132e08455afc0db5f1473d070801ffbfa455 (patch)
tree2dbbafeaa101cc052a9aa8058192ff287a94dbd9 /loader/wine
parent55e51ffed41c65cb0a4c8ea43d837e0b86fae100 (diff)
downloadmpv-bb7b132e08455afc0db5f1473d070801ffbfa455.tar.bz2
mpv-bb7b132e08455afc0db5f1473d070801ffbfa455.tar.xz
Add MPLAYER_ prefix to multiple inclusion guards.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26077 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader/wine')
-rw-r--r--loader/wine/avifmt.h12
-rw-r--r--loader/wine/basetsd.h6
-rw-r--r--loader/wine/debugtools.h7
-rw-r--r--loader/wine/driver.h6
-rw-r--r--loader/wine/elfdll.h6
-rw-r--r--loader/wine/heap.h6
-rw-r--r--loader/wine/ldt.h7
-rw-r--r--loader/wine/mmreg.h6
-rw-r--r--loader/wine/module.h6
-rw-r--r--loader/wine/msacm.h6
-rw-r--r--loader/wine/msacmdrv.h6
-rw-r--r--loader/wine/ntdef.h6
-rw-r--r--loader/wine/objbase.h6
-rw-r--r--loader/wine/pe_image.h6
-rw-r--r--loader/wine/poppack.h8
-rw-r--r--loader/wine/pshpack1.h8
-rw-r--r--loader/wine/pshpack2.h8
-rw-r--r--loader/wine/pshpack4.h8
-rw-r--r--loader/wine/pshpack8.h8
-rw-r--r--loader/wine/vfw.h8
-rw-r--r--loader/wine/winbase.h6
-rw-r--r--loader/wine/windef.h12
-rw-r--r--loader/wine/windows.h6
-rw-r--r--loader/wine/winerror.h6
-rw-r--r--loader/wine/winestring.h6
-rw-r--r--loader/wine/winnt.h6
-rw-r--r--loader/wine/winreg.h6
-rw-r--r--loader/wine/winuser.h6
28 files changed, 97 insertions, 97 deletions
diff --git a/loader/wine/avifmt.h b/loader/wine/avifmt.h
index 38e199e1c7..8522ae508d 100644
--- a/loader/wine/avifmt.h
+++ b/loader/wine/avifmt.h
@@ -3,14 +3,14 @@
* AVIFMT - AVI file format definitions
*
****************************************************************************/
-#ifndef WINE_AVIFMT_H
-#define WINE_AVIFMT_H
+#ifndef MPLAYER_AVIFMT_H
+#define MPLAYER_AVIFMT_H
-#ifndef WINE_NOAVIFMT_H
+#ifndef MPLAYER_NOAVIFMT_H
#include "windef.h"
-#ifndef WINE_MSACM_H
+#ifndef MPLAYER_MSACM_H
typedef DWORD FOURCC;
#endif
@@ -236,5 +236,5 @@ typedef struct
**
** Used in video streams.
*/
-#endif /* WINE_NOAVIFMT_H */
-#endif /* WINE_AVIFMT_H */
+#endif /* MPLAYER_NOAVIFMT_H */
+#endif /* MPLAYER_AVIFMT_H */
diff --git a/loader/wine/basetsd.h b/loader/wine/basetsd.h
index 8c8b9bda89..0cc60c11e3 100644
--- a/loader/wine/basetsd.h
+++ b/loader/wine/basetsd.h
@@ -8,8 +8,8 @@
* http://svn.mplayerhq.hu/mplayer/trunk/
*/
-#ifndef WINE_BASETSD_H
-#define WINE_BASETSD_H
+#ifndef MPLAYER_BASETSD_H
+#define MPLAYER_BASETSD_H
#include "config.h"
@@ -169,4 +169,4 @@ typedef UINT_PTR SIZE_T, *PSIZE_T;
} /* extern "C" */
#endif /* defined(__cplusplus) */
-#endif /* WINE_BASETSD_H */
+#endif /* MPLAYER_BASETSD_H */
diff --git a/loader/wine/debugtools.h b/loader/wine/debugtools.h
index 49b9422bde..d9eab67902 100644
--- a/loader/wine/debugtools.h
+++ b/loader/wine/debugtools.h
@@ -1,6 +1,5 @@
-
-#ifndef WINE_DEBUGTOOLS_H
-#define WINE_DEBUGTOOLS_H
+#ifndef MPLAYER_DEBUGTOOLS_H
+#define MPLAYER_DEBUGTOOLS_H
#include <stdarg.h>
#include "config.h"
@@ -69,4 +68,4 @@ static inline LPCSTR debugstr_w( LPCWSTR s ) { return debugstr_wn( s, 80 ); }
#define DEFAULT_DEBUG_CHANNEL(ch) \
extern char dbch_##ch[]; static char * const __dbch_default = dbch_##ch;
-#endif /* WINE_DEBUGTOOLS_H */
+#endif /* MPLAYER_DEBUGTOOLS_H */
diff --git a/loader/wine/driver.h b/loader/wine/driver.h
index b7c3bbeb30..a5aa6304b3 100644
--- a/loader/wine/driver.h
+++ b/loader/wine/driver.h
@@ -2,8 +2,8 @@
* Drivers definitions
*/
-#ifndef WINE_DRIVER_H
-#define WINE_DRIVER_H
+#ifndef MPLAYER_DRIVER_H
+#define MPLAYER_DRIVER_H
#include "windef.h"
@@ -107,4 +107,4 @@ DWORD WINAPI GetDriverFlags( HDRVR hDriver );
#define WINE_GDF_EXIST 0x80000000
#define WINE_GDF_16BIT 0x10000000
-#endif /* WINE_DRIVER_H */
+#endif /* MPLAYER_DRIVER_H */
diff --git a/loader/wine/elfdll.h b/loader/wine/elfdll.h
index 060e8e222d..82a6ea1f8d 100644
--- a/loader/wine/elfdll.h
+++ b/loader/wine/elfdll.h
@@ -1,5 +1,5 @@
-#ifndef WINE_ELFDLL_H
-#define WINE_ELFDLL_H
+#ifndef MPLAYER_ELFDLL_H
+#define MPLAYER_ELFDLL_H
#include "module.h"
#include "windef.h"
@@ -11,4 +11,4 @@ void ELFDLL_UnloadLibrary(WINE_MODREF *wm);
void *ELFDLL_dlopen(const char *libname, int flags);
extern char *extra_ld_library_path;
-#endif /* WINE_ELFDLL_H */
+#endif /* MPLAYER_ELFDLL_H */
diff --git a/loader/wine/heap.h b/loader/wine/heap.h
index 2feae9cd20..52e2f1c868 100644
--- a/loader/wine/heap.h
+++ b/loader/wine/heap.h
@@ -4,8 +4,8 @@
* Copyright 1996 Alexandre Julliard
*/
-#ifndef WINE_HEAP_H
-#define WINE_HEAP_H
+#ifndef MPLAYER_HEAP_H
+#define MPLAYER_HEAP_H
#include "config.h"
@@ -53,4 +53,4 @@ typedef struct
extern SYSTEM_HEAP_DESCR *SystemHeapDescr;
-#endif /* WINE_HEAP_H */
+#endif /* MPLAYER_HEAP_H */
diff --git a/loader/wine/ldt.h b/loader/wine/ldt.h
index b750302540..89d2a6b692 100644
--- a/loader/wine/ldt.h
+++ b/loader/wine/ldt.h
@@ -4,8 +4,8 @@
* Copyright 1995 Alexandre Julliard
*/
-#ifndef WINE_LDT_H
-#define WINE_LDT_H
+#ifndef MPLAYER_LDT_H
+#define MPLAYER_LDT_H
#include "windef.h"
enum seg_type
@@ -95,4 +95,5 @@ extern unsigned char ldt_flags_copy[LDT_SIZE];
#ifdef __cplusplus
}
#endif
-#endif /* WINE_LDT_H */
+
+#endif /* MPLAYER_LDT_H */
diff --git a/loader/wine/mmreg.h b/loader/wine/mmreg.h
index 4e03a550cc..5f6b460ef5 100644
--- a/loader/wine/mmreg.h
+++ b/loader/wine/mmreg.h
@@ -6,8 +6,8 @@
*
*/
-#ifndef WINE_MMREG_H
-#define WINE_MMREG_H
+#ifndef MPLAYER_MMREG_H
+#define MPLAYER_MMREG_H
/***********************************************************************
* Defines/Enums
@@ -246,4 +246,4 @@ typedef struct mpeglayer3waveformat_tag {
#define WAVE_FORMAT_DEVELOPMENT (0xFFFF)
-#endif /* WINE_MMREG_H */
+#endif /* MPLAYER_MMREG_H */
diff --git a/loader/wine/module.h b/loader/wine/module.h
index 6954d9c5ed..0642f4bd5c 100644
--- a/loader/wine/module.h
+++ b/loader/wine/module.h
@@ -4,8 +4,8 @@
* Copyright 1995 Alexandre Julliard
*/
-#ifndef WINE_MODULE_H
-#define WINE_MODULE_H
+#ifndef MPLAYER_MODULE_H
+#define MPLAYER_MODULE_H
#include "windef.h"
#include "pe_image.h"
@@ -146,4 +146,4 @@ extern WINE_MODREF *MODULE_FindModule( LPCSTR path );
/* resource.c */
extern INT WINAPI AccessResource(HMODULE,HRSRC);
-#endif /* WINE_MODULE_H */
+#endif /* MPLAYER_MODULE_H */
diff --git a/loader/wine/msacm.h b/loader/wine/msacm.h
index 5bc8b079e3..5e3b0df79b 100644
--- a/loader/wine/msacm.h
+++ b/loader/wine/msacm.h
@@ -2,8 +2,8 @@
* msacm.h - Declarations for MSACM
*/
-#ifndef WINE_MSACM_H
-#define WINE_MSACM_H
+#ifndef MPLAYER_MSACM_H
+#define MPLAYER_MSACM_H
#include "windef.h"
#include "driver.h"
@@ -938,4 +938,4 @@ MMRESULT WINAPI acmStreamUnprepareHeader(
} /* extern "C" */
#endif /* defined(__cplusplus) */
-#endif /* WINE_MSACM_H */
+#endif /* MPLAYER_MSACM_H */
diff --git a/loader/wine/msacmdrv.h b/loader/wine/msacmdrv.h
index c9cadef04e..a80587060e 100644
--- a/loader/wine/msacmdrv.h
+++ b/loader/wine/msacmdrv.h
@@ -2,8 +2,8 @@
* msacmdrv.h - Declarations for MSACM driver
*/
-#ifndef WINE_MSACMDRV_H
-#define WINE_MSACMDRV_H
+#ifndef MPLAYER_MSACMDRV_H
+#define MPLAYER_MSACMDRV_H
#include "windef.h"
#include "msacm.h"
@@ -200,4 +200,4 @@ typedef struct ACMDRVFORMATSUGGEST
DWORD cbwfxDst;
} ACMDRVFORMATSUGGEST, *PACMDRVFORMATSUGGEST;
-#endif /* WINE_MSACMDRV_H */
+#endif /* MPLAYER_MSACMDRV_H */
diff --git a/loader/wine/ntdef.h b/loader/wine/ntdef.h
index 734fb65b6d..189ba0a922 100644
--- a/loader/wine/ntdef.h
+++ b/loader/wine/ntdef.h
@@ -1,5 +1,5 @@
-#ifndef WINE_NTDEF_H
-#define WINE_NTDEF_H
+#ifndef MPLAYER_NTDEF_H
+#define MPLAYER_NTDEF_H
#include "basetsd.h"
#include "windef.h"
@@ -98,4 +98,4 @@ typedef OBJECT_ATTRIBUTES *POBJECT_ATTRIBUTES;
#include "poppack.h"
-#endif /* WINE_NTDEF_H */
+#endif /* MPLAYER_NTDEF_H */
diff --git a/loader/wine/objbase.h b/loader/wine/objbase.h
index d70692a7ee..26d72d76c7 100644
--- a/loader/wine/objbase.h
+++ b/loader/wine/objbase.h
@@ -1,5 +1,5 @@
-#ifndef WINE_OBJBASE_H
-#define WINE_OBJBASE_H
+#ifndef MPLAYER_OBJBASE_H
+#define MPLAYER_OBJBASE_H
#ifndef STDCALL
#define STDCALL __attribute__((__stdcall__))
@@ -17,4 +17,4 @@ HRESULT STDCALL CoInitialize(LPVOID pvReserved);
HRESULT STDCALL CoInitializeEx(LPVOID pvReserved, DWORD dwCoinit);
void STDCALL CoUninitialize(void);
-#endif /* WINE_OBJBASE_H */
+#endif /* MPLAYER_OBJBASE_H */
diff --git a/loader/wine/pe_image.h b/loader/wine/pe_image.h
index f8d0139d3a..6f3ac6b498 100644
--- a/loader/wine/pe_image.h
+++ b/loader/wine/pe_image.h
@@ -1,5 +1,5 @@
-#ifndef WINE_PE_IMAGE_H
-#define WINE_PE_IMAGE_H
+#ifndef MPLAYER_PE_IMAGE_H
+#define MPLAYER_PE_IMAGE_H
#include "winnt.h"
#include "winbase.h"
@@ -78,4 +78,4 @@ extern struct wine_modref *ELF_LoadLibraryExA( LPCSTR libname, DWORD flags);
extern void ELF_UnloadLibrary(struct wine_modref *);
extern FARPROC ELF_FindExportedFunction(struct wine_modref *wm, LPCSTR funcName);
-#endif /* WINE_PE_IMAGE_H */
+#endif /* MPLAYER_PE_IMAGE_H */
diff --git a/loader/wine/poppack.h b/loader/wine/poppack.h
index 0353bfe033..06fe1aa83c 100644
--- a/loader/wine/poppack.h
+++ b/loader/wine/poppack.h
@@ -1,5 +1,5 @@
-#ifdef WINE_PSHPACK_H
-#undef WINE_PSHPACK_H
+#ifdef MPLAYER_PSHPACK_H
+#undef MPLAYER_PSHPACK_H
#if (defined(__GNUC__) || defined(__SUNPRO_C)) && !defined(__APPLE__)
#pragma pack()
@@ -10,6 +10,6 @@
#error "Restoration of the previous alignment isn't supported by the compiler"
#endif /* defined(__GNUC__) || defined(__SUNPRO_C) ; !defined(RC_INVOKED) */
-#else /* WINE_PSHPACK_H */
+#else /* MPLAYER_PSHPACK_H */
#error "Popping alignment isn't possible since no alignment has been pushed"
-#endif /* WINE_PSHPACK_H */
+#endif /* MPLAYER_PSHPACK_H */
diff --git a/loader/wine/pshpack1.h b/loader/wine/pshpack1.h
index 947b5abba6..66f9864e37 100644
--- a/loader/wine/pshpack1.h
+++ b/loader/wine/pshpack1.h
@@ -1,5 +1,5 @@
-#ifndef WINE_PSHPACK_H
-#define WINE_PSHPACK_H 1
+#ifndef MPLAYER_PSHPACK_H
+#define MPLAYER_PSHPACK_H 1
#if defined(__GNUC__) || defined(__SUNPRO_C) || defined(__SUNPRO_CC)
//#pragma pack(1)
@@ -7,7 +7,7 @@
#error "1 as alignment isn't supported by the compiler"
#endif /* defined(__GNUC__) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) ; !defined(RC_INVOKED) */
-#else /* WINE_PSHPACK_H */
+#else /* MPLAYER_PSHPACK_H */
#error "Nested pushing of alignment isn't supported by the compiler"
-#endif /* WINE_PSHPACK_H */
+#endif /* MPLAYER_PSHPACK_H */
diff --git a/loader/wine/pshpack2.h b/loader/wine/pshpack2.h
index ab8f641c5b..0adc0463ea 100644
--- a/loader/wine/pshpack2.h
+++ b/loader/wine/pshpack2.h
@@ -1,5 +1,5 @@
-#ifndef WINE_PSHPACK_H
-#define WINE_PSHPACK_H 2
+#ifndef MPLAYER_PSHPACK_H
+#define MPLAYER_PSHPACK_H 2
#if defined(__GNUC__) || defined(__SUNPRO_C) || defined(__SUNPRO_CC)
//#pragma pack(2)
@@ -7,6 +7,6 @@
#error "2 as alignment isn't supported by the compiler"
#endif /* defined(__GNUC__) || defined(__SUNPRO_CC) ; !defined(RC_INVOKED) */
-#else /* WINE_PSHPACK_H */
+#else /* MPLAYER_PSHPACK_H */
#error "Nested pushing of alignment isn't supported by the compiler"
-#endif /* WINE_PSHPACK_H */
+#endif /* MPLAYER_PSHPACK_H */
diff --git a/loader/wine/pshpack4.h b/loader/wine/pshpack4.h
index e5516df742..7adc453cf4 100644
--- a/loader/wine/pshpack4.h
+++ b/loader/wine/pshpack4.h
@@ -1,5 +1,5 @@
-#ifndef WINE_PSHPACK_H
-#define WINE_PSHPACK_H 4
+#ifndef MPLAYER_PSHPACK_H
+#define MPLAYER_PSHPACK_H 4
#if defined(__GNUC__) || defined(__SUNPRO_CC)
//#pragma pack(4)
@@ -9,7 +9,7 @@
#error "4 as alignment isn't supported by the compiler"
#endif /* defined(__GNUC__) || defined(__SUNPRO_CC) ; !defined(RC_INVOKED) */
-#else /* WINE_PSHPACK_H */
+#else /* MPLAYER_PSHPACK_H */
#error "Nested pushing of alignment isn't supported by the compiler"
-#endif /* WINE_PSHPACK_H */
+#endif /* MPLAYER_PSHPACK_H */
diff --git a/loader/wine/pshpack8.h b/loader/wine/pshpack8.h
index 9be196c586..ed1fec033e 100644
--- a/loader/wine/pshpack8.h
+++ b/loader/wine/pshpack8.h
@@ -1,5 +1,5 @@
-#ifndef WINE_PSHPACK_H
-#define WINE_PSHPACK_H 8
+#ifndef MPLAYER_PSHPACK_H
+#define MPLAYER_PSHPACK_H 8
#if 0
//#pragma pack(8)
@@ -7,6 +7,6 @@
#error "8 as alignment is not supported"
#endif /* 0 ; !defined(RC_INVOKED) */
-#else /* WINE_PSHPACK_H */
+#else /* MPLAYER_PSHPACK_H */
#error "Nested pushing of alignment isn't supported by the compiler"
-#endif /* WINE_PSHPACK_H */
+#endif /* MPLAYER_PSHPACK_H */
diff --git a/loader/wine/vfw.h b/loader/wine/vfw.h
index a2a7caf9d0..e663129c82 100644
--- a/loader/wine/vfw.h
+++ b/loader/wine/vfw.h
@@ -3,8 +3,8 @@
* http://svn.mplayerhq.hu/mplayer/trunk/
*/
-#ifndef WINE_VFW_H
-#define WINE_VFW_H
+#ifndef MPLAYER_VFW_H
+#define MPLAYER_VFW_H
//#include "pshpack1.h"
#ifdef __cplusplus
extern "C" {
@@ -43,7 +43,7 @@ typedef struct {
#define VFWAPI
#define VFWAPIV
-#ifndef WINE_WINDEF_H
+#ifndef MPLAYER_WINDEF_H
typedef long (__stdcall__ *DRIVERPROC)(long,HDRVR,unsigned int,long,long);
#endif
@@ -668,4 +668,4 @@ typedef struct {
#ifdef __cplusplus
}
#endif
-#endif /* WINE_VFW_H */
+#endif /* MPLAYER_VFW_H */
diff --git a/loader/wine/winbase.h b/loader/wine/winbase.h
index 297aeb5bed..60664b1928 100644
--- a/loader/wine/winbase.h
+++ b/loader/wine/winbase.h
@@ -1,5 +1,5 @@
-#ifndef WINE_WINBASE_H
-#define WINE_WINBASE_H
+#ifndef MPLAYER_WINBASE_H
+#define MPLAYER_WINBASE_H
#include "basetsd.h"
#include "winnt.h"
@@ -1782,4 +1782,4 @@ VOID WINAPI SetLastError(DWORD);
}
#endif
-#endif /* WINE_WINBASE_H */
+#endif /* MPLAYER_WINBASE_H */
diff --git a/loader/wine/windef.h b/loader/wine/windef.h
index 89ab909765..7b836e12a4 100644
--- a/loader/wine/windef.h
+++ b/loader/wine/windef.h
@@ -8,8 +8,8 @@
*
*/
-#ifndef WINE_WINDEF_H
-#define WINE_WINDEF_H
+#ifndef MPLAYER_WINDEF_H
+#define MPLAYER_WINDEF_H
# include "config.h"
@@ -338,8 +338,8 @@ typedef LRESULT CALLBACK (*WNDPROC)(HWND,UINT,WPARAM,LPARAM);
* 16 bit windows code.
*/
-#ifndef WINE_WINDEF16_H
-#define WINE_WINDEF16_H
+#ifndef MPLAYER_WINDEF16_H
+#define MPLAYER_WINDEF16_H
#include "windef.h"
@@ -453,7 +453,7 @@ typedef VOID CALLBACK (*TIMERPROC16)(HWND16,UINT16,UINT16,DWORD);
typedef LRESULT CALLBACK (*WNDENUMPROC16)(HWND16,LPARAM);
typedef LRESULT CALLBACK (*WNDPROC16)(HWND16,UINT16,WPARAM16,LPARAM);
-#endif /* WINE_WINDEF16_H */
+#endif /* MPLAYER_WINDEF16_H */
/* Define some empty macros for compatibility with Windows code. */
@@ -637,4 +637,4 @@ typedef const RECTL *LPCRECTL;
}
#endif
-#endif /* WINE_WINDEF_H */
+#endif /* MPLAYER_WINDEF_H */
diff --git a/loader/wine/windows.h b/loader/wine/windows.h
index 5d7f1a6766..505110d4b9 100644
--- a/loader/wine/windows.h
+++ b/loader/wine/windows.h
@@ -1,5 +1,5 @@
-#ifndef WINE_WINDOWS_H
-#define WINE_WINDOWS_H
+#ifndef MPLAYER_WINDOWS_H
+#define MPLAYER_WINDOWS_H
#ifdef __cplusplus
extern "C" {
@@ -35,4 +35,4 @@ typedef KANJISTRUCT *PKANJISTRUCT;
}
#endif
-#endif /* WINE_WINDOWS_H */
+#endif /* MPLAYER_WINDOWS_H */
diff --git a/loader/wine/winerror.h b/loader/wine/winerror.h
index e9383b93d6..f1c5258acf 100644
--- a/loader/wine/winerror.h
+++ b/loader/wine/winerror.h
@@ -1,5 +1,5 @@
-#ifndef WINE_WINERROR_H
-#define WINE_WINERROR_H
+#ifndef MPLAYER_WINERROR_H
+#define MPLAYER_WINERROR_H
extern int WIN32_LastError;
@@ -1655,4 +1655,4 @@ extern int WIN32_LastError;
#define OLEOBJ_E_INVALIDVERB 0x00040181L
#define OLEOBJ_S_INVALIDVERB 0x00040180L
-#endif /* WINE_WINERROR_H */
+#endif /* MPLAYER_WINERROR_H */
diff --git a/loader/wine/winestring.h b/loader/wine/winestring.h
index 403879248b..cb70a0098c 100644
--- a/loader/wine/winestring.h
+++ b/loader/wine/winestring.h
@@ -1,5 +1,5 @@
-#ifndef WINE_WINESTRING_H
-#define WINE_WINESTRING_H
+#ifndef MPLAYER_WINESTRING_H
+#define MPLAYER_WINESTRING_H
#include "windef.h"
@@ -10,4 +10,4 @@ LPSTR WINAPI lstrcpynWtoA(LPSTR,LPCWSTR,INT);
#define lstrncmpiA strncasecmp
-#endif /* WINE_WINESTRING_H */
+#endif /* MPLAYER_WINESTRING_H */
diff --git a/loader/wine/winnt.h b/loader/wine/winnt.h
index 4560c6de1e..cbe06f6976 100644
--- a/loader/wine/winnt.h
+++ b/loader/wine/winnt.h
@@ -4,8 +4,8 @@
* Copyright 1996 Alexandre Julliard
*/
-#ifndef WINE_WINNT_H
-#define WINE_WINNT_H
+#ifndef MPLAYER_WINNT_H
+#define MPLAYER_WINNT_H
#include "windef.h"
@@ -2659,4 +2659,4 @@ typedef enum tagSID_NAME_USE {
#include "poppack.h"
-#endif /* WINE_WINNT_H */
+#endif /* MPLAYER_WINNT_H */
diff --git a/loader/wine/winreg.h b/loader/wine/winreg.h
index 202329483f..31d36fcb10 100644
--- a/loader/wine/winreg.h
+++ b/loader/wine/winreg.h
@@ -1,8 +1,8 @@
/*
* Win32 registry defines (see also winnt.h)
*/
-#ifndef WINE_WINREG_H
-#define WINE_WINREG_H
+#ifndef MPLAYER_WINREG_H
+#define MPLAYER_WINREG_H
#include "winbase.h"
#include "winnt.h"
@@ -54,4 +54,4 @@ typedef ACCESS_MASK REGSAM;
} /* extern "C" */
#endif /* defined(__cplusplus) */
-#endif /* WINE_WINREG_H */
+#endif /* MPLAYER_WINREG_H */
diff --git a/loader/wine/winuser.h b/loader/wine/winuser.h
index 47e9e8749e..f42fbd7bba 100644
--- a/loader/wine/winuser.h
+++ b/loader/wine/winuser.h
@@ -1,5 +1,5 @@
-#ifndef WINE_WINUSER_H
-#define WINE_WINUSER_H
+#ifndef MPLAYER_WINUSER_H
+#define MPLAYER_WINUSER_H
#ifndef RC_INVOKED
#include <stdarg.h>
@@ -2926,4 +2926,4 @@ VOID WINAPI ScreenSwitchEnable16(WORD);
}
#endif
-#endif /* WINE_WINUSER_H */
+#endif /* MPLAYER_WINUSER_H */