mirror of
https://github.com/zeldaret/tp
synced 2026-06-03 10:31:57 -04:00
16 lines
213 B
C
16 lines
213 B
C
|
|
#ifndef F_PC_LOAD_H
|
|
#define F_PC_LOAD_H
|
|
|
|
#include "global.h"
|
|
|
|
extern "C" {
|
|
|
|
bool fpcLd_Use(u16 procName);
|
|
int fpcLd_IsLoaded(u16 procName);
|
|
void fpcLd_Free(u16 procName);
|
|
int fpcLd_Load(u16 procName);
|
|
};
|
|
|
|
#endif
|