mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
24b72a5302
* cleanup f_pc files * cleanup f_op files * fix a couple f_op_actor_mng functions * minor JSystem work
15 lines
369 B
C
15 lines
369 B
C
#ifndef F_PC_DRAW_H_
|
|
#define F_PC_DRAW_H_
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
typedef struct base_process_class base_process_class;
|
|
|
|
typedef int (*fpcDw_HandlerFunc)(void*, void*);
|
|
typedef int (*fpcDw_HandlerFuncFunc)(fpcDw_HandlerFunc);
|
|
|
|
s32 fpcDw_Execute(base_process_class* i_proc);
|
|
s32 fpcDw_Handler(fpcDw_HandlerFuncFunc i_iterHandler, fpcDw_HandlerFunc i_func);
|
|
|
|
#endif
|