Add routines to open an ISO-9660 image independent of being part of a

CD.
This commit is contained in:
rocky
2004-01-10 03:03:08 +00:00
parent 47599c3cd7
commit 3d6e147070
10 changed files with 365 additions and 31 deletions

View File

@@ -1,5 +1,5 @@
/*
$Id: _cdio_stdio.h,v 1.1 2003/03/24 19:01:09 rocky Exp $
$Id: _cdio_stdio.h,v 1.2 2004/01/10 03:03:08 rocky Exp $
Copyright (C) 2000 Herbert Valerio Riedel <hvr@gnu.org>
Copyright (C) 2003 Rocky Bernstein <rocky@panix.com>
@@ -25,8 +25,14 @@
#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[]);
#endif /* __CDIO_STREAM_STDIO_H__ */