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_stdio.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_stdio.h')
-rw-r--r-- | src/input/vcd/libcdio/_cdio_stdio.h | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/src/input/vcd/libcdio/_cdio_stdio.h b/src/input/vcd/libcdio/_cdio_stdio.h index 013dff58b..f5e79c41c 100644 --- a/src/input/vcd/libcdio/_cdio_stdio.h +++ b/src/input/vcd/libcdio/_cdio_stdio.h @@ -1,5 +1,5 @@ /* - $Id: _cdio_stdio.h,v 1.1 2003/10/13 11:47:11 f1rmb Exp $ + $Id: _cdio_stdio.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> @@ -25,8 +25,20 @@ #include "_cdio_stream.h" -CdioDataSource* -cdio_stdio_new(const char pathname[]); +/*! + Initialize a new stdio stream reading from pathname. + A pointer to the stream is returned or NULL if there was an error. + + cdio_stream_free should be called on the returned value when you + don't need the stream any more. No other finalization is needed. + */ +CdioDataSource* cdio_stdio_new(const char pathname[]); + +/*! + Deallocate resources assocaited with obj. After this obj is unusable. +*/ +void cdio_stdio_destroy(CdioDataSource *obj); + #endif /* __CDIO_STREAM_STDIO_H__ */ |