mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
18 lines
342 B
C++
18 lines
342 B
C++
#pragma once
|
|
|
|
#include <revolution.h>
|
|
|
|
class JKRHeap;
|
|
|
|
class FileRipper {
|
|
public:
|
|
enum AllocDirection {
|
|
UNK_0 = 0,
|
|
UNK_1 = 1,
|
|
UNK_2 = 2
|
|
};
|
|
|
|
static void setup(u32, JKRHeap *);
|
|
static s32 checkCompressed(const u8 *);
|
|
static void* loadToMainRAM(const char *, u8 *, bool, JKRHeap *, AllocDirection);
|
|
}; |