summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/time.h
diff options
context:
space:
mode:
authorRozlette <Uberpanzermensch@gmail.com>2018-01-17 20:33:38 +0100
committerRozlette <Uberpanzermensch@gmail.com>2018-01-17 21:15:14 +0100
commit6f22471a72a9d6bb0c3063b7e7a1e995ed188825 (patch)
treeb850764408d7d3ab91e79a7f399f51b5408c6eb3 /src/core/hle/service/time/time.h
parentMerge pull request #42 from N00byKing/3295 (diff)
downloadyuzu-6f22471a72a9d6bb0c3063b7e7a1e995ed188825.tar
yuzu-6f22471a72a9d6bb0c3063b7e7a1e995ed188825.tar.gz
yuzu-6f22471a72a9d6bb0c3063b7e7a1e995ed188825.tar.bz2
yuzu-6f22471a72a9d6bb0c3063b7e7a1e995ed188825.tar.lz
yuzu-6f22471a72a9d6bb0c3063b7e7a1e995ed188825.tar.xz
yuzu-6f22471a72a9d6bb0c3063b7e7a1e995ed188825.tar.zst
yuzu-6f22471a72a9d6bb0c3063b7e7a1e995ed188825.zip
Diffstat (limited to 'src/core/hle/service/time/time.h')
-rw-r--r--src/core/hle/service/time/time.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/core/hle/service/time/time.h b/src/core/hle/service/time/time.h
index 7d0803e24..5f332d057 100644
--- a/src/core/hle/service/time/time.h
+++ b/src/core/hle/service/time/time.h
@@ -9,6 +9,42 @@
namespace Service {
namespace Time {
+// TODO(Rozelette) RE this structure
+struct LocationName {
+ INSERT_PADDING_BYTES(0x24);
+};
+static_assert(sizeof(LocationName) == 0x24, "LocationName structure has incorrect size");
+
+struct CalendarTime {
+ u16_le year;
+ u8 month; // Starts at 1
+ u8 day; // Starts at 1
+ u8 hour;
+ u8 minute;
+ u8 second;
+ INSERT_PADDING_BYTES(1);
+};
+static_assert(sizeof(CalendarTime) == 0x8, "CalendarTime structure has incorrect size");
+
+// TODO(Rozelette) RE this structure
+struct CalendarAdditionalInfo {
+ INSERT_PADDING_BYTES(0x18);
+};
+static_assert(sizeof(CalendarAdditionalInfo) == 0x18,
+ "CalendarAdditionalInfo structure has incorrect size");
+
+class TIME final : public ServiceFramework<TIME> {
+public:
+ explicit TIME(const char* name);
+ ~TIME() = default;
+
+private:
+ void GetStandardUserSystemClock(Kernel::HLERequestContext& ctx);
+ void GetStandardNetworkSystemClock(Kernel::HLERequestContext& ctx);
+ void GetStandardSteadyClock(Kernel::HLERequestContext& ctx);
+ void GetTimeZoneService(Kernel::HLERequestContext& ctx);
+};
+
/// Registers all Time services with the specified service manager.
void InstallInterfaces(SM::ServiceManager& service_manager);