diff options
author | red031000 <rubenru09@aol.com> | 2020-05-25 14:14:07 +0100 |
---|---|---|
committer | red031000 <rubenru09@aol.com> | 2020-05-25 14:14:07 +0100 |
commit | e69b83243cb195429be9c40ec1ced2ed860458a2 (patch) | |
tree | 742e098261095b97fa0e3d1a2253cd36169df355 /arm9/lib/include/FS_overlay.h | |
parent | 6e6d5704a2d209b10c175c72994c1dbd8a340409 (diff) |
return of the warnings
Diffstat (limited to 'arm9/lib/include/FS_overlay.h')
-rw-r--r-- | arm9/lib/include/FS_overlay.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/arm9/lib/include/FS_overlay.h b/arm9/lib/include/FS_overlay.h index 14c7ce66..203f555f 100644 --- a/arm9/lib/include/FS_overlay.h +++ b/arm9/lib/include/FS_overlay.h @@ -52,17 +52,19 @@ static inline u32 const FS_GetOverlayTotalSize(FSOverlayInfo *p_ovi) return p_ovi->header.ram_size + p_ovi->header.bss_size; } +u32 FSi_GetOverlayBinarySize(FSOverlayInfo * p_ovi); +void FS_ClearOverlayImage(FSOverlayInfo * p_ovi); +FSFileID FS_GetOverlayFileID(FSOverlayInfo * p_ovi); +BOOL FSi_LoadOverlayInfoCore(FSOverlayInfo * p_ovi, MIProcessor target, FSOverlayID id, FSArchive * arc, u32 offset_arm9, u32 len_arm9, u32 offset_arm7, u32 len_arm7); BOOL FS_LoadOverlayInfo(FSOverlayInfo *p_ovi, MIProcessor target, FSOverlayID id); - -BOOL FS_LoadOverlay(MIProcessor target, FSOverlayID id); - -BOOL FS_UnloadOverlay(MIProcessor target, FSOverlayID id); - +BOOL FS_LoadOverlayImageAsync(FSOverlayInfo *p_ovi, FSFile *p_file); BOOL FS_LoadOverlayImage(FSOverlayInfo *p_ovi); - +BOOL FSi_CompareDigest(const u8 *spec_digest, void *src, u32 len); void FS_StartOverlay(FSOverlayInfo *p_ovi); - -BOOL FS_LoadOverlayImageAsync(FSOverlayInfo *p_ovi, FSFile *p_file); +void FS_EndOverlay(FSOverlayInfo *p_ovi); +BOOL FS_UnloadOverlayImage(FSOverlayInfo * p_ovi); +BOOL FS_LoadOverlay(MIProcessor target, FSOverlayID id); +BOOL FS_UnloadOverlay(MIProcessor target, FSOverlayID id); #if defined(__cplusplus) }; |