blob: 693d68dac41e0b4b96ba62e7644e144c6ecc7c4a (
plain) (
blame)
1
2
3
4
5
6
7
8
|
namespace Ryujinx.HLE.HOS.Services.Loader
{
[Service("ldr:pm")]
class IProcessManagerInterface : IpcService
{
public IProcessManagerInterface(ServiceCtx context) { }
}
}
|