0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-19 23:41:41 +00:00
ryujinx-fork/Ryujinx/OsHle/Services/ServiceTime.cs

37 lines
857 B
C#
Raw Normal View History

using Ryujinx.OsHle.Objects.Time;
2018-02-04 23:08:20 +00:00
using static Ryujinx.OsHle.Objects.ObjHelper;
namespace Ryujinx.OsHle.Services
{
static partial class Service
{
public static long TimeGetStandardUserSystemClock(ServiceCtx Context)
{
MakeObject(Context, new ISystemClock());
2018-02-04 23:08:20 +00:00
return 0;
}
public static long TimeGetStandardNetworkSystemClock(ServiceCtx Context)
{
MakeObject(Context, new ISystemClock());
2018-02-04 23:08:20 +00:00
return 0;
}
public static long TimeGetStandardSteadyClock(ServiceCtx Context)
{
MakeObject(Context, new ISteadyClock());
2018-02-04 23:08:20 +00:00
return 0;
}
public static long TimeGetTimeZoneService(ServiceCtx Context)
{
MakeObject(Context, new ITimeZoneService());
2018-02-04 23:08:20 +00:00
return 0;
}
}
}