homebrewfilter/installer/source/wad.h
Christopher Roy Bratusek c271b85907 added HBF-Installer to GIT
2011-10-15 17:31:29 +02:00

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