mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-06 10:18:30 +02:00
9 lines
191 B
C#
9 lines
191 B
C#
namespace Ryujinx.HLE.HOS.Services.Audio
|
|
{
|
|
[Service("auddev")] // 6.0.0+
|
|
class IAudioSnoopManager : IpcService
|
|
{
|
|
public IAudioSnoopManager(ServiceCtx context) { }
|
|
}
|
|
}
|