diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-01-17 11:43:55 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-01-17 11:43:55 +0000 |
commit | 8277134a67b0a374c6c9398d852ed681f9146145 (patch) | |
tree | 6087d3725ae98100cbfe8f55bd0884a288a8ca0e /libvo/vo_directx.c | |
parent | abf7e21e7960b9040b70be98b99f9c52bf952d7b (diff) | |
download | mpv-8277134a67b0a374c6c9398d852ed681f9146145.tar.bz2 mpv-8277134a67b0a374c6c9398d852ed681f9146145.tar.xz |
Change GUID declarations in vo_directx to be static.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30343 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_directx.c')
-rw-r--r-- | libvo/vo_directx.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libvo/vo_directx.c b/libvo/vo_directx.c index 9aa27de2cc..af4a090493 100644 --- a/libvo/vo_directx.c +++ b/libvo/vo_directx.c @@ -97,12 +97,14 @@ extern int vidmode; * Defining them here allows us to get rid of the dxguid library during * the linking stage. *****************************************************************************/ -const GUID IID_IDirectDraw7 = +#define IID_IDirectDraw7 MP_IID_IDirectDraw7 +static const GUID MP_IID_IDirectDraw7 = { 0x15e65ec0,0x3b9c,0x11d2,{0xb9,0x2f,0x00,0x60,0x97,0x97,0xea,0x5b} }; -const GUID IID_IDirectDrawColorControl = +#define IID_IDirectDrawColorControl MP_IID_IDirectDrawColorControl +static const GUID MP_IID_IDirectDrawColorControl = { 0x4b9f0ee0,0x0d7e,0x11d0,{0x9b,0x06,0x00,0xa0,0xc9,0x03,0xa3,0xb8} }; |