blob: 87fc4a73be700ddf6ecb49cf3d3cd9fdb12bfd6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#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
|