mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-30 02:50:46 -07:00
Move solution and projects to src
This commit is contained in:
19
src/Ryujinx.HLE/HOS/Services/Ldn/IUserServiceCreator.cs
Normal file
19
src/Ryujinx.HLE/HOS/Services/Ldn/IUserServiceCreator.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using Ryujinx.HLE.HOS.Services.Ldn.UserServiceCreator;
|
||||
|
||||
namespace Ryujinx.HLE.HOS.Services.Ldn
|
||||
{
|
||||
[Service("ldn:u")]
|
||||
class IUserServiceCreator : IpcService
|
||||
{
|
||||
public IUserServiceCreator(ServiceCtx context) { }
|
||||
|
||||
[CommandCmif(0)]
|
||||
// CreateUserLocalCommunicationService() -> object<nn::ldn::detail::IUserLocalCommunicationService>
|
||||
public ResultCode CreateUserLocalCommunicationService(ServiceCtx context)
|
||||
{
|
||||
MakeObject(context, new IUserLocalCommunicationService(context));
|
||||
|
||||
return ResultCode.Success;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user