mirror of
https://github.com/zeldaret/tp
synced 2026-05-29 08:43:05 -04:00
80ba3d9fd2
* checkpoint * checkpoint * rename f_pc * checkpoint * small symbol rename and fix some fpc symbols * remove unneeded entries from ldscript * simplify ok check, update docker container Co-authored-by: Pheenoh <pheenoh@gmail.com>
13 lines
198 B
C
13 lines
198 B
C
|
|
#ifndef F_PC_LOAD_H_
|
|
#define F_PC_LOAD_H_
|
|
|
|
#include "global.h"
|
|
|
|
BOOL fpcLd_Use(s16 procName);
|
|
s32 fpcLd_IsLoaded(s16 procName);
|
|
void fpcLd_Free(s16 procName);
|
|
s32 fpcLd_Load(s16 procName);
|
|
|
|
#endif
|