mirror of
https://github.com/encounter/tp.git
synced 2026-03-30 11:40:53 -07:00
5867eaf68b
* typedef for cPhs_Step * make sdk includes consistent * d_menu_quit / d_msg_scrn_explain debug * d_a_obj_testcube mostly done * d_debug_pad mostly done * jstudio tool library headers * some JStudioCameraEditor headers * d_jcam_editor mostly done * try fixing some shield regressions * d_bg_parts mostly done * fix merge errors * debug fix
18 lines
344 B
C
18 lines
344 B
C
#ifndef C_REQUEST_H
|
|
#define C_REQUEST_H
|
|
|
|
#include <dolphin/types.h>
|
|
|
|
struct request_base_class {
|
|
u8 flag0 : 1;
|
|
u8 flag1 : 1;
|
|
u8 flag2 : 6;
|
|
};
|
|
|
|
int cReq_Is_Done(request_base_class*);
|
|
void cReq_Done(request_base_class*);
|
|
void cReq_Command(request_base_class*, u8);
|
|
void cReq_Create(request_base_class*, u8);
|
|
|
|
#endif /* C_REQUEST_H */
|