mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-15 01:26:34 +00:00
101 lines
No EOL
3.2 KiB
C++
101 lines
No EOL
3.2 KiB
C++
/*
|
|
* Copyright (c) 2019 Adubbz
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
#include "lr_ilocationresolver.hpp"
|
|
|
|
namespace sts::lr {
|
|
|
|
Result ILocationResolver::ResolveProgramPath(OutPointerWithServerSize<Path, 0x1> out, ncm::TitleId tid) {
|
|
std::abort();
|
|
}
|
|
|
|
Result ILocationResolver::RedirectProgramPath(InPointer<const Path> path, ncm::TitleId tid) {
|
|
std::abort();
|
|
}
|
|
|
|
Result ILocationResolver::ResolveApplicationControlPath(OutPointerWithServerSize<Path, 0x1> out, ncm::TitleId tid) {
|
|
std::abort();
|
|
}
|
|
|
|
Result ILocationResolver::ResolveApplicationHtmlDocumentPath(OutPointerWithServerSize<Path, 0x1> out, ncm::TitleId tid) {
|
|
std::abort();
|
|
}
|
|
|
|
Result ILocationResolver::ResolveDataPath(OutPointerWithServerSize<Path, 0x1> out, ncm::TitleId tid) {
|
|
std::abort();
|
|
}
|
|
|
|
Result ILocationResolver::RedirectApplicationControlPath(InPointer<const Path> path, ncm::TitleId tid) {
|
|
std::abort();
|
|
}
|
|
|
|
Result ILocationResolver::RedirectApplicationHtmlDocumentPath(InPointer<const Path> path, ncm::TitleId tid) {
|
|
std::abort();
|
|
}
|
|
|
|
Result ILocationResolver::ResolveApplicationLegalInformationPath(OutPointerWithServerSize<Path, 0x1> out, ncm::TitleId tid) {
|
|
std::abort();
|
|
}
|
|
|
|
Result ILocationResolver::RedirectApplicationLegalInformationPath(InPointer<const Path> path, ncm::TitleId tid) {
|
|
std::abort();
|
|
}
|
|
|
|
Result ILocationResolver::Refresh() {
|
|
std::abort();
|
|
}
|
|
|
|
Result ILocationResolver::RedirectApplicationProgramPath(InPointer<const Path> path, ncm::TitleId tid) {
|
|
std::abort();
|
|
}
|
|
|
|
Result ILocationResolver::ClearApplicationRedirection() {
|
|
std::abort();
|
|
}
|
|
|
|
Result ILocationResolver::EraseProgramRedirection(ncm::TitleId tid) {
|
|
std::abort();
|
|
}
|
|
|
|
Result ILocationResolver::EraseApplicationControlRedirection(ncm::TitleId tid) {
|
|
std::abort();
|
|
}
|
|
|
|
Result ILocationResolver::EraseApplicationHtmlDocumentRedirection(ncm::TitleId tid) {
|
|
std::abort();
|
|
}
|
|
|
|
Result ILocationResolver::EraseApplicationLegalInformationRedirection(ncm::TitleId tid) {
|
|
std::abort();
|
|
}
|
|
|
|
Result ILocationResolver::ResolveProgramPathForDebug(OutPointerWithServerSize<Path, 0x1> out, ncm::TitleId tid) {
|
|
std::abort();
|
|
}
|
|
|
|
Result ILocationResolver::RedirectProgramPathForDebug(InPointer<const Path> path, ncm::TitleId tid) {
|
|
std::abort();
|
|
}
|
|
|
|
Result ILocationResolver::RedirectApplicationProgramPathForDebug(InPointer<const Path> path, ncm::TitleId tid) {
|
|
std::abort();
|
|
}
|
|
|
|
Result ILocationResolver::EraseProgramRedirectionForDebug(ncm::TitleId tid) {
|
|
std::abort();
|
|
}
|
|
|
|
} |