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