diff options
Diffstat (limited to 'src/input/vcd/vcdio.h')
-rw-r--r-- | src/input/vcd/vcdio.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/input/vcd/vcdio.h b/src/input/vcd/vcdio.h index 145bb4d7f..854ba5333 100644 --- a/src/input/vcd/vcdio.h +++ b/src/input/vcd/vcdio.h @@ -1,22 +1,22 @@ -/* +/* $Id: vcdio.h,v 1.3 2005/01/08 15:12:42 rockyb Exp $ Copyright (C) 2002, 2004, 2005 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 the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA - + */ #ifndef _VCDIO_H_ @@ -27,37 +27,37 @@ read nlen bytes, return number of bytes read. */ -off_t +off_t vcdio_read (vcdplayer_t *p_vcdplayer, char *psz_buf, const off_t nlen); /*! Opens VCD device and initializes things. - - do nothing if the device had already been open and is the same device. + - do nothing if the device had already been open and is the same device. - if the device had been open and is a different, close it before trying - to open new device. + to open new device. */ bool vcdio_open(vcdplayer_t *p_vcdplayer, char *psz_device); -/*! Closes VCD device specified via "this", and also wipes memory of it +/*! Closes VCD device specified via "this", and also wipes memory of it from it inside "this". */ /* FIXME Move player stuff to player. */ -int +int vcdio_close(vcdplayer_t *p_vcdplayer); /*! From xine plugin spec: - seek position, return new position + seek position, return new position if seeking failed, -1 is returned */ -off_t +off_t vcdio_seek (vcdplayer_t *p_vcdplayer, off_t offset, int origin); #endif /* _VCDIO_H_ */ -/* +/* * Local variables: * c-file-style: "gnu" * tab-width: 8 |