blob: b41b8a48c18591d76586728aa3e9ab5be554057f (
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) { }
}
}
|