You've already forked pico-launcher
mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-01-09 16:28:48 -08:00
13 lines
236 B
C
13 lines
236 B
C
|
|
#pragma once
|
||
|
|
#include "ipc/IpcService.h"
|
||
|
|
#include "ipcChannels.h"
|
||
|
|
|
||
|
|
class SoundIpcService : public IpcService
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
SoundIpcService()
|
||
|
|
: IpcService(IPC_CHANNEL_SOUND) { }
|
||
|
|
|
||
|
|
void OnMessageReceived(u32 data) override;
|
||
|
|
};
|