Move solution and projects to src
This commit is contained in:
30
src/Ryujinx.HLE/HOS/Services/Ns/IServiceGetterInterface.cs
Normal file
30
src/Ryujinx.HLE/HOS/Services/Ns/IServiceGetterInterface.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
namespace Ryujinx.HLE.HOS.Services.Ns
|
||||
{
|
||||
[Service("ns:am2")]
|
||||
[Service("ns:ec")]
|
||||
[Service("ns:rid")]
|
||||
[Service("ns:rt")]
|
||||
[Service("ns:web")]
|
||||
class IServiceGetterInterface : IpcService
|
||||
{
|
||||
public IServiceGetterInterface(ServiceCtx context) { }
|
||||
|
||||
[CommandCmif(7996)]
|
||||
// GetApplicationManagerInterface() -> object<nn::ns::detail::IApplicationManagerInterface>
|
||||
public ResultCode GetApplicationManagerInterface(ServiceCtx context)
|
||||
{
|
||||
MakeObject(context, new IApplicationManagerInterface(context));
|
||||
|
||||
return ResultCode.Success;
|
||||
}
|
||||
|
||||
[CommandCmif(7989)]
|
||||
// GetReadOnlyApplicationControlDataInterface() -> object<nn::ns::detail::IReadOnlyApplicationControlDataInterface>
|
||||
public ResultCode GetReadOnlyApplicationControlDataInterface(ServiceCtx context)
|
||||
{
|
||||
MakeObject(context, new IReadOnlyApplicationControlDataInterface(context));
|
||||
|
||||
return ResultCode.Success;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user