This commit is contained in:
Isaac Marovitz 2023-10-21 01:27:30 -04:00
parent b00e1de4e6
commit 47f0fe6837
No known key found for this signature in database
GPG key ID: 97250B2B09A132E1
4 changed files with 300 additions and 0 deletions

View file

@ -0,0 +1,63 @@
using Ryujinx.Horizon.Common;
using Ryujinx.Horizon.Sdk.Am;
using Ryujinx.Horizon.Sdk.Sf;
namespace Ryujinx.Horizon.Am.Ipc.Proxies
{
partial class ApplicationProxy : IApplicationProxy
{
[CmifCommand(0)]
public Result GetCommonStateGetter(out ICommonStateGetter commonStateGetter, ulong pid)
{
throw new System.NotImplementedException();
}
[CmifCommand(1)]
public Result GetSelfController()
{
throw new System.NotImplementedException();
}
[CmifCommand(2)]
public Result GetWindowController()
{
throw new System.NotImplementedException();
}
[CmifCommand(3)]
public Result GetAudioController()
{
throw new System.NotImplementedException();
}
[CmifCommand(4)]
public Result GetDisplayController()
{
throw new System.NotImplementedException();
}
[CmifCommand(10)]
public Result GetProcessWindingController()
{
throw new System.NotImplementedException();
}
[CmifCommand(11)]
public Result GetLibraryAppletCreator()
{
throw new System.NotImplementedException();
}
[CmifCommand(20)]
public Result GetApplicationFunctions()
{
throw new System.NotImplementedException();
}
[CmifCommand(1000)]
public Result GetDebugFunctions()
{
throw new System.NotImplementedException();
}
}
}

View file

@ -0,0 +1,81 @@
using Ryujinx.Horizon.Common;
using Ryujinx.Horizon.Sdk.Am;
using Ryujinx.Horizon.Sdk.Sf;
namespace Ryujinx.Horizon.Am.Ipc.Proxies
{
partial class LibraryAppletProxy : ILibraryAppletProxy
{
[CmifCommand(0)]
public Result GetCommonStateGetter(out ICommonStateGetter commonStateGetter, ulong pid)
{
throw new System.NotImplementedException();
}
[CmifCommand(1)]
public Result GetSelfController()
{
throw new System.NotImplementedException();
}
[CmifCommand(2)]
public Result GetWindowController()
{
throw new System.NotImplementedException();
}
[CmifCommand(3)]
public Result GetAudioController()
{
throw new System.NotImplementedException();
}
[CmifCommand(4)]
public Result GetDisplayController()
{
throw new System.NotImplementedException();
}
[CmifCommand(10)]
public Result GetProcessWindingController()
{
throw new System.NotImplementedException();
}
[CmifCommand(11)]
public Result GetLibraryAppletCreator()
{
throw new System.NotImplementedException();
}
[CmifCommand(20)]
public Result OpenLibraryAppletSelfAccessor()
{
throw new System.NotImplementedException();
}
[CmifCommand(21)]
public Result GetAppletCommonFunctions()
{
throw new System.NotImplementedException();
}
[CmifCommand(22)]
public Result GetHomeMenuFunctions()
{
throw new System.NotImplementedException();
}
[CmifCommand(23)]
public Result GetGlobalStateController()
{
throw new System.NotImplementedException();
}
[CmifCommand(1000)]
public Result GetDebugFunctions()
{
throw new System.NotImplementedException();
}
}
}

View file

@ -0,0 +1,75 @@
using Ryujinx.Horizon.Common;
using Ryujinx.Horizon.Sdk.Am;
using Ryujinx.Horizon.Sdk.Sf;
namespace Ryujinx.Horizon.Am.Ipc.Proxies
{
partial class OverlayAppletProxy : IOverlayAppletProxy
{
[CmifCommand(0)]
public Result GetCommonStateGetter(out ICommonStateGetter commonStateGetter, ulong pid)
{
throw new System.NotImplementedException();
}
[CmifCommand(1)]
public Result GetSelfController()
{
throw new System.NotImplementedException();
}
[CmifCommand(2)]
public Result GetWindowController()
{
throw new System.NotImplementedException();
}
[CmifCommand(3)]
public Result GetAudioController()
{
throw new System.NotImplementedException();
}
[CmifCommand(4)]
public Result GetDisplayController()
{
throw new System.NotImplementedException();
}
[CmifCommand(10)]
public Result GetProcessWindingController()
{
throw new System.NotImplementedException();
}
[CmifCommand(11)]
public Result GetLibraryAppletCreator()
{
throw new System.NotImplementedException();
}
[CmifCommand(20)]
public Result GetOverlayFunctions()
{
throw new System.NotImplementedException();
}
[CmifCommand(21)]
public Result GetAppletCommonFunctions()
{
throw new System.NotImplementedException();
}
[CmifCommand(23)]
public Result GetGlobalStateController()
{
throw new System.NotImplementedException();
}
[CmifCommand(1000)]
public Result GetDebugFunctions()
{
throw new System.NotImplementedException();
}
}
}

View file

@ -0,0 +1,81 @@
using Ryujinx.Horizon.Common;
using Ryujinx.Horizon.Sdk.Am;
using Ryujinx.Horizon.Sdk.Sf;
namespace Ryujinx.Horizon.Am.Ipc.Proxies
{
partial class SystemAppletProxy : ISystemAppletProxy
{
[CmifCommand(0)]
public Result GetCommonStateGetter(out ICommonStateGetter commonStateGetter, ulong pid)
{
throw new System.NotImplementedException();
}
[CmifCommand(1)]
public Result GetSelfController()
{
throw new System.NotImplementedException();
}
[CmifCommand(2)]
public Result GetWindowController()
{
throw new System.NotImplementedException();
}
[CmifCommand(3)]
public Result GetAudioController()
{
throw new System.NotImplementedException();
}
[CmifCommand(4)]
public Result GetDisplayController()
{
throw new System.NotImplementedException();
}
[CmifCommand(10)]
public Result GetProcessWindingController()
{
throw new System.NotImplementedException();
}
[CmifCommand(11)]
public Result GetLibraryAppletCreator()
{
throw new System.NotImplementedException();
}
[CmifCommand(20)]
public Result GetHomeMenuFunctions()
{
throw new System.NotImplementedException();
}
[CmifCommand(21)]
public Result GetGlobalStateController()
{
throw new System.NotImplementedException();
}
[CmifCommand(22)]
public Result GetApplicationCreator()
{
throw new System.NotImplementedException();
}
[CmifCommand(23)]
public Result GetAppletCommonFunctions()
{
throw new System.NotImplementedException();
}
[CmifCommand(1000)]
public Result GetDebugFunctions()
{
throw new System.NotImplementedException();
}
}
}