mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2025-12-05 13:16:06 +01:00
19 lines
310 B
C
19 lines
310 B
C
#pragma once
|
|
|
|
enum SoundIpcCommand
|
|
{
|
|
SND_IPC_CMD_START_CHANNELS,
|
|
SND_IPC_CMD_STOP_CHANNELS,
|
|
SND_IPC_CMD_SETUP_CHANNEL
|
|
};
|
|
|
|
struct snd_ipc_cmd_setup_channel_t
|
|
{
|
|
u32 cmd : 8;
|
|
u32 channel : 24;
|
|
const void* sourceAddress;
|
|
u32 timer;
|
|
u32 loopStart;
|
|
u32 length;
|
|
u32 control;
|
|
}; |