summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/time.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-24 04:02:14 +0100
committerbunnei <bunneidev@gmail.com>2018-01-25 04:24:18 +0100
commitf0b6baf3adde14f9ccfc4660a6eaa412a81d644d (patch)
tree303f1a73d07c3627902f9d6bc172a4028ffeefaf /src/core/hle/service/time/time.h
parentserver_session: Fix scenario where all domain handlers are closed. (diff)
downloadyuzu-f0b6baf3adde14f9ccfc4660a6eaa412a81d644d.tar
yuzu-f0b6baf3adde14f9ccfc4660a6eaa412a81d644d.tar.gz
yuzu-f0b6baf3adde14f9ccfc4660a6eaa412a81d644d.tar.bz2
yuzu-f0b6baf3adde14f9ccfc4660a6eaa412a81d644d.tar.lz
yuzu-f0b6baf3adde14f9ccfc4660a6eaa412a81d644d.tar.xz
yuzu-f0b6baf3adde14f9ccfc4660a6eaa412a81d644d.tar.zst
yuzu-f0b6baf3adde14f9ccfc4660a6eaa412a81d644d.zip
Diffstat (limited to 'src/core/hle/service/time/time.h')
-rw-r--r--src/core/hle/service/time/time.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/service/time/time.h b/src/core/hle/service/time/time.h
index 399f474d6..cd936a50c 100644
--- a/src/core/hle/service/time/time.h
+++ b/src/core/hle/service/time/time.h
@@ -33,6 +33,13 @@ struct CalendarAdditionalInfo {
static_assert(sizeof(CalendarAdditionalInfo) == 0x18,
"CalendarAdditionalInfo structure has incorrect size");
+// TODO(bunnei) RE this structure
+struct SystemClockContext {
+ INSERT_PADDING_BYTES(0x20);
+};
+static_assert(sizeof(SystemClockContext) == 0x20,
+ "SystemClockContext structure has incorrect size");
+
class Module final {
public:
class Interface : public ServiceFramework<Interface> {