Files
2025-03-17 22:26:56 -04:00

15 lines
373 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 BOOL (*fpcDw_HandlerFunc)(void*, void*);
typedef BOOL (*fpcDw_HandlerFuncFunc)(fpcDw_HandlerFunc);
BOOL fpcDw_Execute(base_process_class* i_proc);
BOOL fpcDw_Handler(fpcDw_HandlerFuncFunc i_iterHandler, fpcDw_HandlerFunc i_func);
#endif