mirror of
https://github.com/zeldaret/tww.git
synced 2024-11-23 05:19:44 +00:00
adb95b135c
Original repository: https://github.com/encounter/ww
14 lines
362 B
C
14 lines
362 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* pProc);
|
|
s32 fpcDw_Handler(fpcDw_HandlerFuncFunc param_1, fpcDw_HandlerFunc param_2);
|
|
|
|
#endif |