summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bkisofs/bkRead7x.h')
-rw-r--r--lib/bkisofs/bkRead7x.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/bkisofs/bkRead7x.h b/lib/bkisofs/bkRead7x.h
new file mode 100644
index 0000000..3ca8d4b
--- /dev/null
+++ b/lib/bkisofs/bkRead7x.h
@@ -0,0 +1,17 @@
+/*******************************************************************************
+* bkRead7x
+* functions to read simple variables as described in sections 7.x of iso9660
+* not including filenames (7.4, 7.5, 7.6)
+*
+* if they are stored in both byte orders, the appropriate one is read into
+* the parameter but the return is 2x the size of that variable
+*
+* */
+
+#include "bk.h"
+
+int read711(VolInfo* volInfo, unsigned char* value);
+int read721(VolInfo* volInfo, unsigned short* value);
+int read731(VolInfo* volInfo, unsigned* value);
+int read733(VolInfo* volInfo, unsigned* value);
+void read733FromCharArray(unsigned char* array, unsigned* value);