1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-20 14:03:25 +01:00
Atmosphere/stratosphere/pm/source/pm_info_service.hpp

50 lines
1.7 KiB
C++
Raw Normal View History

2019-06-29 10:20:36 +01:00
/*
* Copyright (c) 2018-2019 Atmosphère-NX
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include <switch.h>
#include <stratosphere.hpp>
#include <stratosphere/ldr.hpp>
#include <stratosphere/pm.hpp>
namespace sts::pm::info {
2019-10-15 06:49:06 +01:00
class InformationService final : public sf::IServiceObject {
2019-06-29 10:20:36 +01:00
private:
enum class CommandId {
GetTitleId = 0,
AtmosphereGetProcessId = 65000,
AtmosphereHasLaunchedTitle = 65001,
};
private:
/* Actual command implementations. */
2019-10-15 06:49:06 +01:00
Result GetTitleId(sf::Out<ncm::TitleId> out, os::ProcessId process_id);
2019-06-29 10:20:36 +01:00
/* Atmosphere extension commands. */
2019-10-15 06:49:06 +01:00
Result AtmosphereGetProcessId(sf::Out<os::ProcessId> out, ncm::TitleId title_id);
Result AtmosphereHasLaunchedTitle(sf::Out<bool> out, ncm::TitleId title_id);
2019-06-29 10:20:36 +01:00
public:
DEFINE_SERVICE_DISPATCH_TABLE {
2019-10-15 06:49:06 +01:00
MAKE_SERVICE_COMMAND_META(GetTitleId),
2019-06-29 10:20:36 +01:00
2019-10-15 06:49:06 +01:00
MAKE_SERVICE_COMMAND_META(AtmosphereGetProcessId),
MAKE_SERVICE_COMMAND_META(AtmosphereHasLaunchedTitle),
2019-06-29 10:20:36 +01:00
};
};
}