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
|
|
|
|
|
|
|
|
#include "dolphin/types.h"
|
2023-05-12 12:10:14 -07:00
|
|
|
|
|
|
|
|
typedef struct base_process_class base_process_class;
|
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);
|
|
|
|
|
|
2024-11-29 08:24:26 -08:00
|
|
|
s32 fpcDw_Execute(base_process_class* i_proc);
|
|
|
|
|
s32 fpcDw_Handler(fpcDw_HandlerFuncFunc i_iterHandler, fpcDw_HandlerFunc i_func);
|
2021-04-01 12:06:29 +02:00
|
|
|
|
2024-11-29 08:24:26 -08:00
|
|
|
#endif
|