mirror of
https://github.com/Atmosphere-NX/Atmosphere-libs.git
synced 2025-06-21 19:12:42 +02:00
* sf: Begin experimenting with new interface declaration format * sf: convert fs interfaces to new format * sf: finish conversion of libstrat to new definitions * sf: convert loader to new format * sf: convert spl to new format * sf: update ncm for new format * sf: convert pm to new format * sf: convert ro/sm to new format * sf: update fatal for new format * sf: support building dmnt under new scheme * sf: update ams.mitm for new format * sf: correct invocation def for pointer holder * fs: correct 10.x+ user bindings for Get*SpaceSize
103 lines
3.5 KiB
C++
103 lines
3.5 KiB
C++
/*
|
|
* Copyright (c) 2019-2020 Adubbz, 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::lr {
|
|
|
|
class RemoteRegisteredLocationResolverImpl {
|
|
private:
|
|
::LrRegisteredLocationResolver srv;
|
|
public:
|
|
RemoteRegisteredLocationResolverImpl(::LrRegisteredLocationResolver &l) : srv(l) { /* ... */ }
|
|
|
|
~RemoteRegisteredLocationResolverImpl() { ::serviceClose(&srv.s); }
|
|
public:
|
|
/* Actual commands. */
|
|
Result ResolveProgramPath(sf::Out<Path> out, ncm::ProgramId id) {
|
|
return ::lrRegLrResolveProgramPath(std::addressof(this->srv), static_cast<u64>(id), out->str);
|
|
}
|
|
|
|
Result RegisterProgramPathDeprecated(const Path &path, ncm::ProgramId id) {
|
|
/* TODO: libnx bindings */
|
|
AMS_ABORT();
|
|
}
|
|
|
|
Result RegisterProgramPath(const Path &path, ncm::ProgramId id, ncm::ProgramId owner_id) {
|
|
/* TODO: libnx bindings */
|
|
AMS_ABORT();
|
|
}
|
|
|
|
Result UnregisterProgramPath(ncm::ProgramId id) {
|
|
/* TODO: libnx bindings */
|
|
AMS_ABORT();
|
|
}
|
|
|
|
Result RedirectProgramPathDeprecated(const Path &path, ncm::ProgramId id) {
|
|
/* TODO: libnx bindings */
|
|
AMS_ABORT();
|
|
}
|
|
|
|
Result RedirectProgramPath(const Path &path, ncm::ProgramId id, ncm::ProgramId owner_id) {
|
|
/* TODO: libnx bindings */
|
|
AMS_ABORT();
|
|
}
|
|
|
|
Result ResolveHtmlDocumentPath(sf::Out<Path> out, ncm::ProgramId id) {
|
|
/* TODO: libnx bindings */
|
|
AMS_ABORT();
|
|
}
|
|
|
|
Result RegisterHtmlDocumentPathDeprecated(const Path &path, ncm::ProgramId id) {
|
|
/* TODO: libnx bindings */
|
|
AMS_ABORT();
|
|
}
|
|
|
|
Result RegisterHtmlDocumentPath(const Path &path, ncm::ProgramId id, ncm::ProgramId owner_id) {
|
|
/* TODO: libnx bindings */
|
|
AMS_ABORT();
|
|
}
|
|
|
|
Result UnregisterHtmlDocumentPath(ncm::ProgramId id) {
|
|
/* TODO: libnx bindings */
|
|
AMS_ABORT();
|
|
}
|
|
|
|
Result RedirectHtmlDocumentPathDeprecated(const Path &path, ncm::ProgramId id) {
|
|
/* TODO: libnx bindings */
|
|
AMS_ABORT();
|
|
}
|
|
|
|
Result RedirectHtmlDocumentPath(const Path &path, ncm::ProgramId id, ncm::ProgramId owner_id) {
|
|
/* TODO: libnx bindings */
|
|
AMS_ABORT();
|
|
}
|
|
|
|
Result Refresh() {
|
|
/* TODO: libnx bindings */
|
|
AMS_ABORT();
|
|
}
|
|
|
|
Result RefreshExcluding(const sf::InArray<ncm::ProgramId> &ids) {
|
|
/* TODO: libnx bindings */
|
|
AMS_ABORT();
|
|
}
|
|
};
|
|
static_assert(lr::IsIRegisteredLocationResolver<RemoteRegisteredLocationResolverImpl>);
|
|
|
|
}
|