mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-30 09:51:38 -04:00
eda175afc8
* move dolsdk2004 over * cleanup some temp work * finish and cleanup gf * b_bh done * d_a_e_mb done
26 lines
543 B
C
26 lines
543 B
C
#ifndef OS_DOLPHIN_GDEV_STUBS_H
|
|
#define OS_DOLPHIN_GDEV_STUBS_H
|
|
|
|
#include <dolphin/amc/AmcExi2Comm.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int gdev_cc_initialize(void* inputPendingPtrRef, EXICallback monitorCallback);
|
|
int gdev_cc_shutdown();
|
|
int gdev_cc_open();
|
|
int gdev_cc_close();
|
|
int gdev_cc_read(u8* data, int size);
|
|
int gdev_cc_write(const u8* bytes, int length);
|
|
int gdev_cc_pre_continue();
|
|
int gdev_cc_post_stop();
|
|
int gdev_cc_peek();
|
|
int gdev_cc_initinterrupts();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* OS_DOLPHIN_GDEV_STUBS_H */
|