Files
tww/include/TRK_MINNOW_DOLPHIN/Os/dolphin/UDP_Stubs.h
T
TakaRikka d489dc996b copy over a bunch of sdk stuff (#1066)
* most of dolsdk copied over

* add some gf stuff

* trk wip

* ode/amc stuff

* build fix
2026-06-26 11:03:34 -04:00

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 */