summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/ptm/ts.h
blob: 39a734ef7ae31c76899d79b05164d9a765ba6016 (plain) (tree)
























                                                               
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later

#pragma once

#include "common/common_types.h"
#include "core/hle/service/service.h"

namespace Service::PTM {

class TS final : public ServiceFramework<TS> {
public:
    explicit TS(Core::System& system_);
    ~TS() override;

private:
    enum class Location : u8 {
        Internal,
        External,
    };

    void GetTemperature(Kernel::HLERequestContext& ctx);
};

} // namespace Service::PTM