mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-01 15:15:09 +01:00
21 lines
351 B
C
21 lines
351 B
C
#ifndef _WAD_H_
|
|
#define _WAD_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void mopen();
|
|
u64 GetTitleID();
|
|
bool CheckAppFound(u64 title);
|
|
|
|
s32 __Wad_ReadAlloc(void **outbuf, u32 offset, u32 len);
|
|
s32 Wad_InstallFromMemory(int startpos_x, int startpos_y);
|
|
s32 Wad_UninstallFromMemory(int startpos_x, int startpos_y);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|