some more wii tests/improvements (#2512)

* some more wii tests/improvements

* merge Z2AudioCS changes
This commit is contained in:
TakaRikka
2025-06-30 15:17:50 -07:00
committed by GitHub
parent 214cfce7f6
commit 227cf2353a
16 changed files with 1561 additions and 62 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef Z2AUDIOCS_H
#define Z2AUDIOCS_H
#include <revolution/wpad.h>
class JKRHeap;
class JKRArchive;
class Z2AudioCS {
public:
void newSpkSoundMemPool();
int init(JKRHeap*, JKRArchive*, s32, s32);
void update();
static void connect(s32);
static void disconnect(s32);
static void extensionProcess(s32, s32);
u32 getHandleSoundID(s32);
void start(s32, s32);
static void startLevel(s32, s32);
};
#endif /* Z2AUDIOCS_H */