Implement miniaudio. (#15)

This commit is contained in:
Skyth (Asilkan)
2024-12-03 18:10:06 +03:00
committed by GitHub
parent 913f5a388b
commit 6c65e0914d
9 changed files with 96 additions and 105 deletions
+9
View File
@@ -8,6 +8,15 @@ struct GuestThreadParameter
uint32_t flags;
};
struct GuestThreadContext
{
PPCContext ppcContext{};
uint8_t* thread = nullptr;
GuestThreadContext(uint32_t cpuNumber);
~GuestThreadContext();
};
struct GuestThread
{
static DWORD Start(uint32_t function);