mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-26 08:24:31 -04:00
7154ac08e1
* initial freezard actor struct + setActionMode OK * daE_FZ_Draw * setReflectAngle * mBoundSoundset * daE_FZ_Execute & execute * demoDelete * daE_FZ_Delete & _delete * CreateHeap * useHeapInit * cc_set * mtx_set * action WIP * way_gake_check * executeRollMove * executeMove * draw WIP * executeDamage * checkpoint * create * checkpoint * daE_FZ_c::executeWait * checkpoint * daE_FZ_c::damage_check almost done * rm asm * rm headers * setup_profile WIP + doxygen update * fix merge issues * docs fix? * fix2 * doxygen updates * setup g_profile_E_FZ, profile setup script WIP * update github actions * update progress.md
26 lines
544 B
C
26 lines
544 B
C
#ifndef OS_DOLPHIN_GDEV_STUBS_H
|
|
#define OS_DOLPHIN_GDEV_STUBS_H
|
|
|
|
#include "amcstubs/AmcExi2Stubs.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int gdev_cc_initialize(void* inputPendingPtrRef, AmcEXICallback 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 */
|