diff options
author | phintuka <phintuka> | 2009-06-11 22:06:20 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2009-06-11 22:06:20 +0000 |
commit | c49e1df54d43cc4284a2ff845b28b1764a8fc035 (patch) | |
tree | 5ae55bb7659a7ffed20ccede86ee89861aedf43c | |
parent | 58f0b8419965d59ad03fbd0fe658b23ad558cf1c (diff) | |
download | xineliboutput-c49e1df54d43cc4284a2ff845b28b1764a8fc035.tar.gz xineliboutput-c49e1df54d43cc4284a2ff845b28b1764a8fc035.tar.bz2 |
Merge from trunk:
revision 1.9
int -> size_t
revision 1.8
Moved MRL_ID to own header
revision 1.7
Define MRL ID
-rw-r--r-- | xine_input_vdr.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/xine_input_vdr.h b/xine_input_vdr.h index fa9c29fc..3e60edc7 100644 --- a/xine_input_vdr.h +++ b/xine_input_vdr.h @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_input_vdr.h,v 1.5 2008-03-31 20:36:03 phintuka Exp $ + * $Id: xine_input_vdr.h,v 1.5.2.1 2009-06-11 22:06:20 phintuka Exp $ * */ @@ -15,6 +15,10 @@ extern "C" { #endif +#include <xine/input_plugin.h> + +#include "xine_input_vdr_mrl.h" + struct input_plugin_s; struct osd_command_s; struct frontend_s; @@ -41,8 +45,8 @@ typedef struct vdr_input_plugin_funcs_s { #define CONTROL_DISCONNECTED -3 typedef struct grab_data_s { - int size; - char *data; + size_t size; + char *data; } grab_data_t; #if defined __cplusplus |