diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-04-11 12:20:31 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-04-11 12:20:31 +0000 |
commit | c4e423537d77267ff859f20cefcbeaa4817d7199 (patch) | |
tree | 60bf60d3735d39384b35936a89a71b8223bf4a4a /src/input/vcd/libcdio/_cdio_stream.h | |
parent | 79c5f9914c6476d31d64b85d0d34b31644732672 (diff) | |
download | xine-lib-c4e423537d77267ff859f20cefcbeaa4817d7199.tar.gz xine-lib-c4e423537d77267ff859f20cefcbeaa4817d7199.tar.bz2 |
libvcd 0.7.20, libcdio 0.68
CVS patchset: 6388
CVS date: 2004/04/11 12:20:31
Diffstat (limited to 'src/input/vcd/libcdio/_cdio_stream.h')
-rw-r--r-- | src/input/vcd/libcdio/_cdio_stream.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/input/vcd/libcdio/_cdio_stream.h b/src/input/vcd/libcdio/_cdio_stream.h index 562c18bf8..ffbb4098e 100644 --- a/src/input/vcd/libcdio/_cdio_stream.h +++ b/src/input/vcd/libcdio/_cdio_stream.h @@ -1,8 +1,8 @@ /* - $Id: _cdio_stream.h,v 1.1 2003/10/13 11:47:11 f1rmb Exp $ + $Id: _cdio_stream.h,v 1.2 2004/04/11 12:20:31 miguelfreitas Exp $ Copyright (C) 2000 Herbert Valerio Riedel <hvr@gnu.org> - Copyright (C) 2003 Rocky Bernstein <rocky@panix.com> + Copyright (C) 2003, 2004 Rocky Bernstein <rocky@panix.com> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -96,14 +96,17 @@ extern "C" { Otherwise, -1 is returned and the global variable errno is set to indi- cate the error. */ - long cdio_stream_seek(CdioDataSource* obj, long offset, int whence); + long int cdio_stream_seek(CdioDataSource* obj, long offset, int whence); /*! Return whatever size of stream reports, I guess unit size is bytes. On error return -1; */ - long cdio_stream_stat(CdioDataSource* obj); + long int cdio_stream_stat(CdioDataSource* obj); + /*! + Deallocate resources assocaited with obj. After this obj is unusable. + */ void cdio_stream_destroy(CdioDataSource* obj); void cdio_stream_close(CdioDataSource* obj); |