2021-04-01 12:06:29 +02:00
|
|
|
#ifndef F_PC_DRAW_H_
|
|
|
|
|
#define F_PC_DRAW_H_
|
2021-03-28 22:49:05 +02:00
|
|
|
|
2021-04-01 12:06:29 +02:00
|
|
|
#include "SSystem/SComponent/c_node_iter.h"
|
2021-03-28 22:49:05 +02:00
|
|
|
#include "dolphin/types.h"
|
2021-04-08 16:01:29 +02:00
|
|
|
#include "f_pc/f_pc_base.h"
|
2021-03-28 22:49:05 +02:00
|
|
|
|
2021-04-01 12:06:29 +02:00
|
|
|
typedef int (*fpcDw_HandlerFunc)(void*, void*);
|
|
|
|
|
typedef int (*fpcDw_HandlerFuncFunc)(fpcDw_HandlerFunc);
|
|
|
|
|
|
|
|
|
|
s32 fpcDw_Execute(base_process_class* pProc);
|
|
|
|
|
s32 fpcDw_Handler(fpcDw_HandlerFuncFunc param_1, fpcDw_HandlerFunc param_2);
|
|
|
|
|
|
|
|
|
|
#endif
|