time: Implement ISteadyClock::GetCurrentTimePoint.

This commit is contained in:
bunnei
2018-01-24 23:52:21 -05:00
parent 748c0de539
commit 3258db29da
2 changed files with 22 additions and 1 deletions

View File

@ -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<Interface> {