mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
* 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
25 lines
498 B
C
25 lines
498 B
C
#ifndef OS_DOLPHIN_UDP_STUBS_H
|
|
#define OS_DOLPHIN_UDP_STUBS_H
|
|
|
|
#include <dolphin/os.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int udp_cc_initialize(void* flagOut, __OSInterruptHandler handler);
|
|
int udp_cc_shutdown(void);
|
|
int udp_cc_open(void);
|
|
int udp_cc_close(void);
|
|
int udp_cc_read(u8* dest, int size);
|
|
int udp_cc_write(const u8* src, int size);
|
|
int udp_cc_peek(void);
|
|
int udp_cc_pre_continue(void);
|
|
int udp_cc_post_stop(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* OS_DOLPHIN_UDP_STUBS_H */
|