/* * 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 . */ #include "lr_ilocationresolver.hpp" namespace sts::lr { Result ILocationResolver::ResolveProgramPath(OutPointerWithServerSize out, ncm::TitleId tid) { std::abort(); } Result ILocationResolver::RedirectProgramPath(InPointer path, ncm::TitleId tid) { std::abort(); } Result ILocationResolver::ResolveApplicationControlPath(OutPointerWithServerSize out, ncm::TitleId tid) { std::abort(); } Result ILocationResolver::ResolveApplicationHtmlDocumentPath(OutPointerWithServerSize out, ncm::TitleId tid) { std::abort(); } Result ILocationResolver::ResolveDataPath(OutPointerWithServerSize out, ncm::TitleId tid) { std::abort(); } Result ILocationResolver::RedirectApplicationControlPath(InPointer path, ncm::TitleId tid) { std::abort(); } Result ILocationResolver::RedirectApplicationHtmlDocumentPath(InPointer path, ncm::TitleId tid) { std::abort(); } Result ILocationResolver::ResolveApplicationLegalInformationPath(OutPointerWithServerSize out, ncm::TitleId tid) { std::abort(); } Result ILocationResolver::RedirectApplicationLegalInformationPath(InPointer path, ncm::TitleId tid) { std::abort(); } Result ILocationResolver::Refresh() { std::abort(); } Result ILocationResolver::RedirectApplicationProgramPath(InPointer 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 out, ncm::TitleId tid) { std::abort(); } Result ILocationResolver::RedirectProgramPathForDebug(InPointer path, ncm::TitleId tid) { std::abort(); } Result ILocationResolver::RedirectApplicationProgramPathForDebug(InPointer path, ncm::TitleId tid) { std::abort(); } Result ILocationResolver::EraseProgramRedirectionForDebug(ncm::TitleId tid) { std::abort(); } }