diff dvdread_internal.h @ 62:3bc841283972 src

Move UDFReadBlocksRaw declaration to dvdread_internal.h.
author diego
date Sat, 11 Sep 2010 15:15:43 +0000
parents ef679522d00f
children
line wrap: on
line diff
--- a/dvdread_internal.h	Sun Aug 08 22:49:28 2010 +0000
+++ b/dvdread_internal.h	Sat Sep 11 15:15:43 2010 +0000
@@ -19,10 +19,15 @@
 #ifndef LIBDVDREAD_DVDREAD_INTERNAL_H
 #define LIBDVDREAD_DVDREAD_INTERNAL_H
 
+#include <stdint.h>
+#include <sys/types.h>
+
 #ifdef _WIN32
 #include <unistd.h>
 #endif /* _WIN32 */
 
+#include "dvdread/dvd_reader.h"
+
 #define CHECK_VALUE(arg)                                                \
   if(!(arg)) {                                                          \
     fprintf(stderr, "\n*** libdvdread: CHECK_VALUE failed in %s:%i ***" \
@@ -30,4 +35,7 @@
             __FILE__, __LINE__, # arg );                                \
   }
 
+int UDFReadBlocksRaw(dvd_reader_t *device, uint32_t lb_number,
+                     size_t block_count, unsigned char *data, int encrypted);
+
 #endif /* LIBDVDREAD_DVDREAD_INTERNAL_H */