summaryrefslogtreecommitdiff
path: root/include/f_pc/f_pc_draw.h
blob: b62024269fc608ec6f948d4b881315f3324fd2ae (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 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