blob: a82e8a94f8de233ea8df1933c8d3cb30cdbf8361 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
namespace Ryujinx.HLE.HOS.Services.Pcv.Clkrst
{
[Service("clkrst")] // 8.0.0+
[Service("clkrst:i")] // 8.0.0+
class IClkrstManager : IpcService
{
public IClkrstManager(ServiceCtx context) { }
}
}
|