blob: 80db744aefbb8e49079c360fc5f9b1c999eb8733 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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
|