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