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