mirror of
https://github.com/zeldaret/tww.git
synced 2026-09-01 17:29:58 -04:00
d489dc996b
* most of dolsdk copied over * add some gf stuff * trk wip * ode/amc stuff * build fix
25 lines
501 B
C
25 lines
501 B
C
#ifndef OS_DOLPHIN_UDP_STUBS_H
|
|
#define OS_DOLPHIN_UDP_STUBS_H
|
|
|
|
#include "dolphin/os/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 */
|