2018-09-07 16:00:13 +01:00
|
|
|
/*
|
2019-04-08 03:00:49 +01:00
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
2018-09-07 16:00:13 +01:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
2019-06-17 23:27:29 +01:00
|
|
|
|
2018-05-05 03:16:40 +01:00
|
|
|
#pragma once
|
|
|
|
#include <switch.h>
|
2018-06-15 00:50:01 +01:00
|
|
|
#include <stratosphere.hpp>
|
2018-05-05 03:16:40 +01:00
|
|
|
|
|
|
|
enum InformationCmd {
|
|
|
|
Information_Cmd_GetTitleId = 0,
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
Information_Cmd_AtmosphereGetProcessId = 65000,
|
|
|
|
Information_Cmd_AtmosphereHasCreatedTitle = 65001,
|
2018-05-05 03:16:40 +01:00
|
|
|
};
|
|
|
|
|
2018-06-15 00:50:01 +01:00
|
|
|
class InformationService final : public IServiceObject {
|
2018-05-05 03:16:40 +01:00
|
|
|
private:
|
|
|
|
/* Actual commands. */
|
2018-10-30 00:29:35 +00:00
|
|
|
Result GetTitleId(Out<u64> tid, u64 pid);
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
/* Atmosphere commands. */
|
|
|
|
Result AtmosphereGetProcessId(Out<u64> pid, u64 tid);
|
|
|
|
Result AtmosphereHasLaunchedTitle(Out<bool> out, u64 tid);
|
2018-10-30 00:29:35 +00:00
|
|
|
public:
|
|
|
|
DEFINE_SERVICE_DISPATCH_TABLE {
|
|
|
|
MakeServiceCommandMeta<Information_Cmd_GetTitleId, &InformationService::GetTitleId>(),
|
2019-06-26 23:46:19 +01:00
|
|
|
MakeServiceCommandMeta<Information_Cmd_AtmosphereGetProcessId, &InformationService::AtmosphereGetProcessId>(),
|
|
|
|
MakeServiceCommandMeta<Information_Cmd_AtmosphereHasCreatedTitle, &InformationService::AtmosphereHasLaunchedTitle>(),
|
2018-10-30 00:29:35 +00:00
|
|
|
};
|
2018-06-03 06:46:27 +01:00
|
|
|
};
|