Move solution and projects to src
This commit is contained in:
parent
cd124bda58
commit
cee7121058
3466 changed files with 55 additions and 55 deletions
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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue