comparison dvd_udf.c @ 62:3bc841283972 src

Move UDFReadBlocksRaw declaration to dvdread_internal.h.
author diego
date Sat, 11 Sep 2010 15:15:43 +0000
parents 1acf15da93ba
children 99af5ed114a4
comparison
equal deleted inserted replaced
61:eac01aeb7be5 62:3bc841283972
35 #include <sys/types.h> 35 #include <sys/types.h>
36 #include <sys/stat.h> 36 #include <sys/stat.h>
37 #include <unistd.h> 37 #include <unistd.h>
38 #include <inttypes.h> 38 #include <inttypes.h>
39 39
40 #include "dvdread_internal.h"
40 #include "dvdread/dvd_reader.h" 41 #include "dvdread/dvd_reader.h"
41 #include "dvdread/dvd_udf.h" 42 #include "dvdread/dvd_udf.h"
42
43 /* Private but located in/shared with dvd_reader.c */
44 extern int UDFReadBlocksRaw( dvd_reader_t *device, uint32_t lb_number,
45 size_t block_count, unsigned char *data,
46 int encrypted );
47 43
48 /* It's required to either fail or deliver all the blocks asked for. */ 44 /* It's required to either fail or deliver all the blocks asked for. */
49 static int DVDReadLBUDF( dvd_reader_t *device, uint32_t lb_number, 45 static int DVDReadLBUDF( dvd_reader_t *device, uint32_t lb_number,
50 size_t block_count, unsigned char *data, 46 size_t block_count, unsigned char *data,
51 int encrypted ) 47 int encrypted )