File: bkRead7x.h

package info (click to toggle)
isomaster 1.3.3-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,644 kB
  • ctags: 762
  • sloc: ansic: 11,004; cpp: 273; makefile: 205; sh: 65; python: 11
file content (17 lines) | stat: -rw-r--r-- 646 bytes parent folder | download | duplicates (5)
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);