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