summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/pdm_qry.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/ns/pdm_qry.h')
-rw-r--r--src/core/hle/service/ns/pdm_qry.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/core/hle/service/ns/pdm_qry.h b/src/core/hle/service/ns/pdm_qry.h
deleted file mode 100644
index c98e01660..000000000
--- a/src/core/hle/service/ns/pdm_qry.h
+++ /dev/null
@@ -1,32 +0,0 @@
-// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
-// SPDX-License-Identifier: GPL-2.0-or-later
-
-#pragma once
-
-#include "core/hle/service/service.h"
-
-namespace Service::NS {
-
-struct PlayStatistics {
- u64 application_id{};
- u32 first_entry_index{};
- u32 first_timestamp_user{};
- u32 first_timestamp_network{};
- u32 last_entry_index{};
- u32 last_timestamp_user{};
- u32 last_timestamp_network{};
- u32 play_time_in_minutes{};
- u32 total_launches{};
-};
-static_assert(sizeof(PlayStatistics) == 0x28, "PlayStatistics is an invalid size");
-
-class PDM_QRY final : public ServiceFramework<PDM_QRY> {
-public:
- explicit PDM_QRY(Core::System& system_);
- ~PDM_QRY() override;
-
-private:
- void QueryPlayStatisticsByApplicationIdAndUserAccountId(HLERequestContext& ctx);
-};
-
-} // namespace Service::NS