mirror of
https://github.com/encounter/tp.git
synced 2026-03-30 11:40:53 -07:00
13 lines
206 B
C
13 lines
206 B
C
|
|
#ifndef F_PC_LOAD_H_
|
|
#define F_PC_LOAD_H_
|
|
|
|
#include <types.h>
|
|
|
|
BOOL fpcLd_Use(s16 i_procName);
|
|
BOOL fpcLd_IsLoaded(s16 i_procName);
|
|
void fpcLd_Free(s16 i_procName);
|
|
int fpcLd_Load(s16 i_procName);
|
|
|
|
#endif
|