mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-09-09 19:01:12 -04:00
8b4808da8a
* TRK full match * remove trk asm * ar done * cleanup some dolphin headers * more dolphin cleanup * cleanup / GD fully matched * almost all of GX fully matched * GX / Mtx full matched * most of OS done * pad done * most of VI * remove asm * forgot couple vec funcs * couple JUtility matches
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 */
|