dvd_* declarations fixed to matc with open.c

noticed by Tomas Hurka <tom@hukatronic.cz>


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8345 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2002-12-04 21:30:24 +00:00
parent 37aa6dfad3
commit a0ced69860
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@ extern int verbose; // defined in mplayer.c
#endif
#ifdef USE_DVDREAD
int dvd_read_sector(void* d,void* p2);
void dvd_seek(void* d,off_t pos);
int dvd_read_sector(dvd_priv_t *d,unsigned char* data);
void dvd_seek(dvd_priv_t *d,int pos);
void dvd_close(dvd_priv_t *d);
#endif