blob: e5667ff3897847b2337e69ffef016a48d49b9502 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
#ifndef __NEWER_FILELOAD_H
#define __NEWER_FILELOAD_H
#include <common.h>
struct FileHandle {
void *filePtr;
int length;
};
struct DVDHandle {
int unk1; // 00
int unk2; // 04
int unk3; // 08
int unk4; // 0C
int unk5; // 10
int unk6; // 14
int unk7; // 18
int unk8; // 1C
int unk9; // 20
int unk10; // 24
int unk11; // 28
int unk12; // 2C
int address; // 30
int length; // 34
int unk13; // 38
};
int DVDConvertPathToEntrynum(const char *path);
bool DVDFastOpen(int entrynum, DVDHandle *handle);
int DVDReadPrio(DVDHandle *handle, void *buffer, int length, int offset, int unk);
bool DVDClose(DVDHandle *handle);
// EGG::Heap
void *EGG__Heap__alloc(unsigned long size, int unk, void *heap);
void EGG__Heap__free(void *ptr, void *heap);
void *LoadFile(FileHandle *handle, const char *name);
void *LoadCompressedFile(FileHandle *handle, const char *name);
bool FreeFile(FileHandle *handle);
void inline *GetArchiveHeap() {
return ArchiveHeap;
}
// C++ interface
class File {
public:
File();
~File();
bool open(const char *filename);
void close();
bool openCompressed(const char *filename);
bool isOpen();
void *ptr();
u32 length();
private:
FileHandle m_handle;
bool m_loaded;
};
// Todo: input stream maybe?
#endif
|