blob: f1b93b563a855e8704664c3afb9527f380ee2e74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#ifndef GUARD_NARC_H
#define GUARD_NARC_H
struct NarcHeader
{
uint32_t Id;
uint16_t ByteOrderMark;
uint16_t Version;
uint32_t FileSize;
uint16_t ChunkSize;
uint16_t ChunkCount;
};
struct FileAllocationTable
{
uint32_t Id;
uint32_t ChunkSize;
uint16_t FileCount;
uint16_t Reserved;
};
struct FileAllocationTableEntry
{
uint32_t Start;
uint32_t End;
};
struct FileNameTable
{
uint32_t Id;
uint32_t ChunkSize;
};
struct FileNameTableEntry
{
uint32_t Offset;
uint16_t FirstFileId;
uint16_t Utility;
};
struct FileImages
{
uint32_t Id;
uint32_t ChunkSize;
};
#endif //GUARD_NARC_H
|