From 3258db29da499f88c0d85983272f30871c75a59f Mon Sep 17 00:00:00 2001 From: bunnei Date: Wed, 24 Jan 2018 23:52:21 -0500 Subject: time: Implement ISteadyClock::GetCurrentTimePoint. --- src/core/hle/service/time/time.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/core/hle/service/time/time.h') diff --git a/src/core/hle/service/time/time.h b/src/core/hle/service/time/time.h index cd936a50c..1cbbadb21 100644 --- a/src/core/hle/service/time/time.h +++ b/src/core/hle/service/time/time.h @@ -40,6 +40,12 @@ struct SystemClockContext { static_assert(sizeof(SystemClockContext) == 0x20, "SystemClockContext structure has incorrect size"); +struct SteadyClockTimePoint { + u64 value; + INSERT_PADDING_WORDS(4); +}; +static_assert(sizeof(SteadyClockTimePoint) == 0x18, "SteadyClockTimePoint is incorrect size"); + class Module final { public: class Interface : public ServiceFramework { -- cgit v1.2.3