comparison src/video/Xext/Xv/Xv.c @ 1226:d05306f0dc21

More dynamic X11 fixes...catches some code in Xlib headers that caused dependencies...
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 04 Jan 2006 22:57:50 +0000
parents 045f186426e1
children 3692456e7b0f
comparison
equal deleted inserted replaced
1225:09bc22169702 1226:d05306f0dc21
55 #include <X11/extensions/Xext.h> 55 #include <X11/extensions/Xext.h>
56 #include <X11/extensions/XShm.h> 56 #include <X11/extensions/XShm.h>
57 #include "extutil.h" 57 #include "extutil.h"
58 58
59 #include "../../x11/SDL_x11dyn.h" 59 #include "../../x11/SDL_x11dyn.h"
60
61 /* Workaround code in headers... */
62 #define _XFlush p_XFlush
63 #define _XFlushGCCache p_XFlushGCCache
64 #define _XReply p_XReply
65 #define _XSend p_XSend
66 60
67 static XExtensionInfo _xv_info_data; 61 static XExtensionInfo _xv_info_data;
68 static XExtensionInfo *xv_info = &_xv_info_data; 62 static XExtensionInfo *xv_info = &_xv_info_data;
69 static char *xv_extension_name = XvName; 63 static char *xv_extension_name = XvName;
70 64