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

typedef struct base_process_class base_process_class;

typedef int (*fpcDw_HandlerFunc)(void*, void*);
typedef int (*fpcDw_HandlerFuncFunc)(fpcDw_HandlerFunc);

int fpcDw_Execute(base_process_class* i_proc);
int fpcDw_Handler(fpcDw_HandlerFuncFunc i_iterHandler, fpcDw_HandlerFunc i_func);

#endif