summaryrefslogtreecommitdiff
path: root/src/video_out
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-07-18 21:38:16 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-07-18 21:38:16 +0000
commita785a3e404bdba9e901431cf9d2e047e8d4b4c1a (patch)
treec31784d3351c1c9728af1fc6a4bf300b5ef02397 /src/video_out
parent0cc3c12037389df276f5233ea5d5bcd7929ddc18 (diff)
downloadxine-lib-a785a3e404bdba9e901431cf9d2e047e8d4b4c1a.tar.gz
xine-lib-a785a3e404bdba9e901431cf9d2e047e8d4b4c1a.tar.bz2
Split alsa drivers, more checks about versions. Made xine lib c++ compliant.
CVS patchset: 308 CVS date: 2001/07/18 21:38:16
Diffstat (limited to 'src/video_out')
-rw-r--r--src/video_out/video_out_x11.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/video_out/video_out_x11.h b/src/video_out/video_out_x11.h
index 73cbe7e6f..eeb0d8244 100644
--- a/src/video_out/video_out_x11.h
+++ b/src/video_out/video_out_x11.h
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out_x11.h,v 1.5 2001/05/28 13:42:02 guenter Exp $
+ * $Id: video_out_x11.h,v 1.6 2001/07/18 21:38:16 f1rmb Exp $
*
* structs and defines specific to all x11 related output plugins
* (any x11 base xine ui should include this)
@@ -26,6 +26,10 @@
#ifndef HAVE_VIDEO_OUT_X11_H
#define HAVE_VIDEO_OUT_X11_H
+#ifdef __cplusplus
+extern "C" {
+#endif
+
typedef struct {
/* area of that drawable to be used by video */
@@ -93,4 +97,8 @@ typedef struct {
/* xevent *data */
#define GUI_DATA_EX_EXPOSE_EVENT 3
+#ifdef __cplusplus
+}
+#endif
+
#endif