summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/xine.h.tmpl.in14
1 files changed, 13 insertions, 1 deletions
diff --git a/include/xine.h.tmpl.in b/include/xine.h.tmpl.in
index 986066d4a..84b36b7cf 100644
--- a/include/xine.h.tmpl.in
+++ b/include/xine.h.tmpl.in
@@ -28,7 +28,7 @@
\endverbatim
*/
/*
- * $Id: xine.h.tmpl.in,v 1.74 2002/01/10 15:31:26 jcdutton Exp $
+ * $Id: xine.h.tmpl.in,v 1.75 2002/01/10 15:48:55 jcdutton Exp $
*
*/
@@ -406,6 +406,18 @@ typedef void vo_frame_t;
*/
typedef void vo_overlay_t;
+typedef struct vo_info_s vo_info_t;
+
+struct vo_info_s {
+
+ int interface_version; /* plugin interface version */
+ char *id; /* id of this plugin */
+ char *description; /* human-readable description of this plugin */
+ int visual_type; /* visual type supported by this plugin */
+ int priority; /* priority of this plugin for auto-probing */
+
+};
+
/**
* \struct vo_driver_t
* \brief Data type of structure vo_driver_s.