summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/glue/time/time_zone.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-01-30 08:27:27 +0100
committerLiam <byteslice@airmail.cc>2024-02-01 18:57:54 +0100
commit35e3c6802832f7396a04603edca9434acc6d3972 (patch)
tree52eaad3e62761c3c0a5738620f4201322de6fc3f /src/core/hle/service/glue/time/time_zone.h
parentMerge pull request #12878 from zhaobot/tx-update-20240201020554 (diff)
downloadyuzu-35e3c6802832f7396a04603edca9434acc6d3972.tar
yuzu-35e3c6802832f7396a04603edca9434acc6d3972.tar.gz
yuzu-35e3c6802832f7396a04603edca9434acc6d3972.tar.bz2
yuzu-35e3c6802832f7396a04603edca9434acc6d3972.tar.lz
yuzu-35e3c6802832f7396a04603edca9434acc6d3972.tar.xz
yuzu-35e3c6802832f7396a04603edca9434acc6d3972.tar.zst
yuzu-35e3c6802832f7396a04603edca9434acc6d3972.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/glue/time/time_zone.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/core/hle/service/glue/time/time_zone.h b/src/core/hle/service/glue/time/time_zone.h
index 9c1530966..beb54ddde 100644
--- a/src/core/hle/service/glue/time/time_zone.h
+++ b/src/core/hle/service/glue/time/time_zone.h
@@ -46,18 +46,20 @@ public:
~TimeZoneService() override;
Result GetDeviceLocationName(Out<Service::PSC::Time::LocationName> out_location_name);
- Result SetDeviceLocationName(Service::PSC::Time::LocationName& location_name);
+ Result SetDeviceLocationName(const Service::PSC::Time::LocationName& location_name);
Result GetTotalLocationNameCount(Out<u32> out_count);
Result LoadLocationNameList(
Out<u32> out_count,
OutArray<Service::PSC::Time::LocationName, BufferAttr_HipcMapAlias> out_names, u32 index);
- Result LoadTimeZoneRule(OutRule out_rule, Service::PSC::Time::LocationName& location_name);
+ Result LoadTimeZoneRule(OutRule out_rule,
+ const Service::PSC::Time::LocationName& location_name);
Result GetTimeZoneRuleVersion(Out<Service::PSC::Time::RuleVersion> out_rule_version);
Result GetDeviceLocationNameAndUpdatedTime(
Out<Service::PSC::Time::LocationName> location_name,
Out<Service::PSC::Time::SteadyClockTimePoint> out_time_point);
- Result SetDeviceLocationNameWithTimeZoneRule(Service::PSC::Time::LocationName& location_name,
- InBuffer<BufferAttr_HipcAutoSelect> binary);
+ Result SetDeviceLocationNameWithTimeZoneRule(
+ const Service::PSC::Time::LocationName& location_name,
+ InBuffer<BufferAttr_HipcAutoSelect> binary);
Result ParseTimeZoneBinary(OutRule out_rule, InBuffer<BufferAttr_HipcAutoSelect> binary);
Result GetDeviceLocationNameOperationEventReadableHandle(
OutCopyHandle<Kernel::KReadableEvent> out_event);