htc: begin skeletoning types for HtcmiscImpl

This commit is contained in:
Michael Scire
2021-02-09 06:16:43 -08:00
committed by SciresM
parent 889f144b27
commit 1963ae7ec0
13 changed files with 320 additions and 6 deletions

View File

@@ -16,3 +16,4 @@
#pragma once
#include <stratosphere/htc/server/htc_htcmisc_hipc_server.hpp>
#include <stratosphere/htc/server/htc_htcmisc_channel_ids.hpp>

View File

@@ -0,0 +1,25 @@
/*
* Copyright (c) 2018-2020 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 <vapours.hpp>
#include <stratosphere/htclow/htclow_channel_types.hpp>
namespace ams::htc::server {
constexpr inline htclow::ChannelId HtcmiscClientChannelId = 1;
constexpr inline htclow::ChannelId HtcmiscServerChannelId = 2;
}

View File

@@ -33,4 +33,8 @@ namespace ams::htclow {
constexpr inline s16 ProtocolVersion = 5;
enum ReceiveOption {
/* ... */
};
}