summaryrefslogtreecommitdiff
blob: 3ca8d4b38b52376b504615c20f060ec9b12440f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);