aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx/OsHle/Services/ServiceAppletOE.cs
blob: 2f98a20143b8152fa184d33a9a75a36278ddde17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using Ryujinx.OsHle.Objects;

using static Ryujinx.OsHle.Objects.ObjHelper;

namespace Ryujinx.OsHle.Services
{
    static partial class Service
    {
        public static long AppletOpenApplicationProxy(ServiceCtx Context)
        {
            MakeObject(Context, new AmIApplicationProxy());

            return 0;
        }
    }
}