blob: 56b12af0847708eb90647f109a817b7abbec1b5b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
namespace Ryujinx.HLE.HOS.Services.Usb
{
[Service("usb:hs")]
[Service("usb:hs:a")] // 7.0.0+
class IClientRootSession : IpcService
{
public IClientRootSession(ServiceCtx context) { }
}
}
|