blob: bbb2484b4adcf06477e2629aaf46b68e64ee2db9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
}
}
}
|