xine-lib  1.2.9
vcdio.h
Go to the documentation of this file.
1 /*
2  $Id: vcdio.h,v 1.3 2005/01/08 15:12:42 rockyb Exp $
3 
4  Copyright (C) 2002, 2004, 2005 Rocky Bernstein <rocky@panix.com>
5 
6  This program is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10 
11  This program is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with this program; if not, write to the Free Software
18  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
19 
20 */
21 
22 #ifndef _VCDIO_H_
23 #define _VCDIO_H_
24 
30 off_t
31 vcdio_read (vcdplayer_t *p_vcdplayer, char *psz_buf, const off_t nlen);
32 
39 bool
40 vcdio_open(vcdplayer_t *p_vcdplayer, char *psz_device);
41 
44 /* FIXME Move player stuff to player. */
45 int
46 vcdio_close(vcdplayer_t *p_vcdplayer);
47 
55 off_t
56 vcdio_seek (vcdplayer_t *p_vcdplayer, off_t offset, int origin);
57 
58 #endif /* _VCDIO_H_ */
59 
60 /*
61  * Local variables:
62  * c-file-style: "gnu"
63  * tab-width: 8
64  * indent-tabs-mode: nil
65  * End:
66  */
off_t vcdio_read(vcdplayer_t *p_vcdplayer, char *psz_buf, const off_t nlen)
bool vcdio_open(vcdplayer_t *p_vcdplayer, char *psz_device)
Definition: vcdio.c:93
Definition: vcdplayer.h:101
int vcdio_close(vcdplayer_t *p_vcdplayer)
Definition: vcdio.c:73
off_t vcdio_seek(vcdplayer_t *p_vcdplayer, off_t offset, int origin)
Definition: vcdio.c:197