Atmosphere/stratosphere/pm/source/pm_info_service.hpp

46 lines
1.6 KiB
C++
Raw Normal View History

2019-06-29 05:20:36 -04: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 <stratosphere.hpp>
namespace ams::pm::info {
2019-06-29 05:20:36 -04:00
2019-10-15 01:49:06 -04:00
class InformationService final : public sf::IServiceObject {
2019-06-29 05:20:36 -04:00
private:
enum class CommandId {
GetTitleId = 0,
AtmosphereGetProcessId = 65000,
AtmosphereHasLaunchedTitle = 65001,
};
private:
/* Actual command implementations. */
2019-10-15 01:49:06 -04:00
Result GetTitleId(sf::Out<ncm::TitleId> out, os::ProcessId process_id);
2019-06-29 05:20:36 -04:00
/* Atmosphere extension commands. */
2019-10-15 01:49:06 -04: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 05:20:36 -04:00
public:
DEFINE_SERVICE_DISPATCH_TABLE {
2019-10-15 01:49:06 -04:00
MAKE_SERVICE_COMMAND_META(GetTitleId),
2019-06-29 05:20:36 -04:00
2019-10-15 01:49:06 -04:00
MAKE_SERVICE_COMMAND_META(AtmosphereGetProcessId),
MAKE_SERVICE_COMMAND_META(AtmosphereHasLaunchedTitle),
2019-06-29 05:20:36 -04:00
};
};
}