diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-03-21 17:54:53 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-03-21 17:54:53 +0000 |
commit | c45882ae342607f721d53f258b700cb9b6958991 (patch) | |
tree | 386723a38d01ef3d72d8bc593e9ff325fda25b2c /include | |
parent | 4036f902d36c48f761129d636be143e00b5037b2 (diff) | |
download | xine-lib-c45882ae342607f721d53f258b700cb9b6958991.tar.gz xine-lib-c45882ae342607f721d53f258b700cb9b6958991.tar.bz2 |
add pvr realtime reporting event
CVS patchset: 4464
CVS date: 2003/03/21 17:54:53
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.in | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index 34306ae9d..bf2abeda8 100644 --- a/include/xine.h.in +++ b/include/xine.h.in @@ -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: xine.h.in,v 1.68 2003/03/20 22:58:41 miguelfreitas Exp $ + * $Id: xine.h.in,v 1.69 2003/03/21 17:54:54 miguelfreitas Exp $ * * public xine-lib (libxine) interface and documentation * @@ -1229,6 +1229,7 @@ void xine_config_reset (xine_t *self); #define XINE_EVENT_SET_V4L2 200 #define XINE_EVENT_PVR_SAVE 201 #define XINE_EVENT_PVR_REPORT_NAME 202 +#define XINE_EVENT_PVR_REALTIME 203 /* * xine event struct @@ -1349,6 +1350,14 @@ typedef struct { char name[256]; /* name for saving, might be longer */ } xine_pvr_save_data_t; +typedef struct { + /* mode values: + * 0 = non realtime + * 1 = realtime + */ + int mode; +} xine_pvr_realtime_t; + #endif /* opaque xine_event_queue_t */ |