diff --git a/src/Ryujinx.Horizon/Am/Ipc/Proxies/ApplicationProxy.cs b/src/Ryujinx.Horizon/Am/Ipc/Proxies/ApplicationProxy.cs new file mode 100644 index 000000000..c4bea7ca3 --- /dev/null +++ b/src/Ryujinx.Horizon/Am/Ipc/Proxies/ApplicationProxy.cs @@ -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(); + } + } +} diff --git a/src/Ryujinx.Horizon/Am/Ipc/Proxies/LibraryAppletProxy.cs b/src/Ryujinx.Horizon/Am/Ipc/Proxies/LibraryAppletProxy.cs new file mode 100644 index 000000000..0f4a843fb --- /dev/null +++ b/src/Ryujinx.Horizon/Am/Ipc/Proxies/LibraryAppletProxy.cs @@ -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(); + } + } +} diff --git a/src/Ryujinx.Horizon/Am/Ipc/Proxies/OverlayAppletProxy.cs b/src/Ryujinx.Horizon/Am/Ipc/Proxies/OverlayAppletProxy.cs new file mode 100644 index 000000000..926161b65 --- /dev/null +++ b/src/Ryujinx.Horizon/Am/Ipc/Proxies/OverlayAppletProxy.cs @@ -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(); + } + } +} diff --git a/src/Ryujinx.Horizon/Am/Ipc/Proxies/SystemAppletProxy.cs b/src/Ryujinx.Horizon/Am/Ipc/Proxies/SystemAppletProxy.cs new file mode 100644 index 000000000..9f46cff86 --- /dev/null +++ b/src/Ryujinx.Horizon/Am/Ipc/Proxies/SystemAppletProxy.cs @@ -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(); + } + } +}