summaryrefslogtreecommitdiff
path: root/xine_input_vdr.h
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>2008-02-28 06:10:55 +0000
committercvs2svn <admin@example.com>2008-02-28 06:10:55 +0000
commitf676de20d91ba1cc58b8eaaf2f6b931851c2063a (patch)
tree69a3aa7a4da079ef4de5aa12ab0563d2945f2a23 /xine_input_vdr.h
parent4e3b041c65f36dd8729ca2b5fe224461a2166f6d (diff)
downloadxineliboutput-f676de20d91ba1cc58b8eaaf2f6b931851c2063a.tar.gz
xineliboutput-f676de20d91ba1cc58b8eaaf2f6b931851c2063a.tar.bz2
This commit was manufactured by cvs2svn to create branch 'unlabeled-1.3.2'.
Diffstat (limited to 'xine_input_vdr.h')
-rw-r--r--xine_input_vdr.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/xine_input_vdr.h b/xine_input_vdr.h
deleted file mode 100644
index e1ec89de..00000000
--- a/xine_input_vdr.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * xine_input_vdr.h:
- *
- * See the main source file 'xineliboutput.c' for copyright information and
- * how to reach the author.
- *
- * $Id: xine_input_vdr.h,v 1.4 2008-02-27 00:30:43 phintuka Exp $
- *
- */
-
-#ifndef __XINE_INPUT_VDR_H_
-#define __XINE_INPUT_VDR_H_
-
-#if defined __cplusplus
-extern "C" {
-#endif
-
-struct input_plugin_s;
-struct osd_command_s;
-
-typedef struct vdr_input_plugin_funcs_s {
- /* VDR --> input plugin (only local mode) */
- int (*push_input_write)(struct input_plugin_s *, const char *, int);
- int (*push_input_control)(struct input_plugin_s *, const char *);
- int (*push_input_osd)(struct input_plugin_s *, struct osd_command_s *);
- /* input plugin --> frontend (only local mode) */
- void (*xine_input_event)(const char *, const char *);
- /* input plugin --> frontend (remote mode) */
- int (*intercept_osd)(void *fe_handle, struct osd_command_s *);
- /* input plugin --> frontend */
- void *(*fe_control)(void *fe_handle, const char *);
- void *fe_handle;
- /* frontend --> input plugin (remote mode) */
- int (*input_control)(struct input_plugin_s *, const char *, const char *, int, int);
-} vdr_input_plugin_funcs_t;
-
-#define CONTROL_OK 0
-#define CONTROL_UNKNOWN -1
-#define CONTROL_PARAM_ERROR -2
-#define CONTROL_DISCONNECTED -3
-
-typedef struct grab_data_s {
- int size;
- char *data;
-} grab_data_t;
-
-#if defined __cplusplus
-}
-#endif
-
-
-#endif /*__XINE_INPUT_VDR_H_*/
-