mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-14 07:00:08 -05:00
16 lines
302 B
C
16 lines
302 B
C
#ifndef POKEHEARTGOLD_GF_GFX_LOADER_H
|
|
#define POKEHEARTGOLD_GF_GFX_LOADER_H
|
|
|
|
#include "filesystem.h"
|
|
|
|
void *GfGfxLoader_LoadFromNarc_GetSizeOut(
|
|
NarcId narcId,
|
|
s32 fileId,
|
|
BOOL isCompressed,
|
|
HeapID heapId,
|
|
BOOL allocAtEnd,
|
|
u32 *size_p
|
|
);
|
|
|
|
#endif //POKEHEARTGOLD_GF_GFX_LOADER_H
|