mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
* fop-actor-mng * rodata * more actor mng progress * actor mng progress * format * cleanup * fix Mtx function signatures * PR suggestion Co-authored-by: Pheenoh <pheenoh@gmail.com>
17 lines
381 B
C
17 lines
381 B
C
#ifndef F_OP_ACTOR_ITER_H_
|
|
#define F_OP_ACTOR_ITER_H_
|
|
|
|
#include "global.h"
|
|
|
|
typedef int (*fopAcIt_ExecutorFunc)(void*, void*);
|
|
typedef void* (*fopAcIt_JudgeFunc)(void*, void*);
|
|
|
|
extern "C" {
|
|
void fopAcIt_Judge__FPFPvPv_PvPv(void);
|
|
void fopAcIt_Executor__FPFPvPv_iPv(void);
|
|
}
|
|
|
|
int fopAcIt_Executor(fopAcIt_ExecutorFunc, void*);
|
|
void* fopAcIt_Judge(fopAcIt_JudgeFunc, void*);
|
|
|
|
#endif |