mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-29 08:12:52 -04:00
ce8319486b
* 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
|