blob: 3de5d1ae29683fc7f563ac19169ad9401367a91d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef MELVIX_ISO9660_H
#define MELVIX_ISO9660_H
#define ISO9660_ROOT_RECORD_OFFSET 156
#define ISO9660_DIR_RECORD_LENGTH 0
#define ISO9660_DIR_EAR_LBA 2
#define ISO9660_DIR_EAR_LENGTH 10
#define ISO9660_DIR_FILENAME_LENGTH 32
#define ISO9660_DIR_FILENAME 33
#include <stdint.h>
struct ISO9660_entity {
uint32_t LBA;
uint32_t length;
};
struct ISO9660_entity *ISO9660_get(char **dirs, uint8_t dirs_sz);
uint8_t *ISO9660_read(struct ISO9660_entity *entity);
#endif
|