diff options
Diffstat (limited to 'Ryujinx.Core/OsHle/Services/ServiceAppletOE.cs')
| -rw-r--r-- | Ryujinx.Core/OsHle/Services/ServiceAppletOE.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Ryujinx.Core/OsHle/Services/ServiceAppletOE.cs b/Ryujinx.Core/OsHle/Services/ServiceAppletOE.cs new file mode 100644 index 00000000..bbb2484b --- /dev/null +++ b/Ryujinx.Core/OsHle/Services/ServiceAppletOE.cs @@ -0,0 +1,16 @@ +using Ryujinx.Core.OsHle.Objects.Am; + +using static Ryujinx.Core.OsHle.Objects.ObjHelper; + +namespace Ryujinx.Core.OsHle.Services +{ + static partial class Service + { + public static long AppletOpenApplicationProxy(ServiceCtx Context) + { + MakeObject(Context, new IApplicationProxy()); + + return 0; + } + } +}
\ No newline at end of file |
