Move solution and projects to src
This commit is contained in:
8
src/Ryujinx.HLE/HOS/Services/Grc/IGrcService.cs
Normal file
8
src/Ryujinx.HLE/HOS/Services/Grc/IGrcService.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Ryujinx.HLE.HOS.Services.Grc
|
||||
{
|
||||
[Service("grc:c")] // 4.0.0+
|
||||
class IGrcService : IpcService
|
||||
{
|
||||
public IGrcService(ServiceCtx context) { }
|
||||
}
|
||||
}
|
||||
8
src/Ryujinx.HLE/HOS/Services/Grc/IRemoteVideoTransfer.cs
Normal file
8
src/Ryujinx.HLE/HOS/Services/Grc/IRemoteVideoTransfer.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Ryujinx.HLE.HOS.Services.Grc
|
||||
{
|
||||
[Service("grc:d")] // 6.0.0+
|
||||
class IRemoteVideoTransfer : IpcService
|
||||
{
|
||||
public IRemoteVideoTransfer(ServiceCtx context) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user