xine-lib 1.2.13-20230125hg15249
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
30off_t
31vcdio_read (vcdplayer_t *p_vcdplayer, char *psz_buf, const off_t nlen);
32
39bool
40vcdio_open(vcdplayer_t *p_vcdplayer, char *psz_device);
41
44/* FIXME Move player stuff to player. */
45int
46vcdio_close(vcdplayer_t *p_vcdplayer);
47
55off_t
56vcdio_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 */
Definition vcdplayer.h:101
off_t vcdio_read(vcdplayer_t *p_vcdplayer, char *psz_buf, const off_t nlen)
off_t vcdio_seek(vcdplayer_t *p_vcdplayer, off_t offset, int origin)
Definition vcdio.c:200
int vcdio_close(vcdplayer_t *p_vcdplayer)
Definition vcdio.c:73
bool vcdio_open(vcdplayer_t *p_vcdplayer, char *psz_device)
Definition vcdio.c:93