2018-09-07 16:00:13 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 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/>.
|
|
|
|
*/
|
|
|
|
|
2018-04-18 10:57:18 +01:00
|
|
|
#include <switch.h>
|
2018-06-12 23:00:09 +01:00
|
|
|
#include <stratosphere.hpp>
|
2018-04-18 10:57:18 +01:00
|
|
|
#include "ldr_shell.hpp"
|
|
|
|
#include "ldr_launch_queue.hpp"
|
2018-10-25 20:52:01 +01:00
|
|
|
#include "ldr_content_management.hpp"
|
2018-04-18 10:57:18 +01:00
|
|
|
|
2018-10-30 13:29:30 +00:00
|
|
|
Result ShellService::AddTitleToLaunchQueue(u64 tid, InPointer<char> args, u32 args_size) {
|
|
|
|
if (args.num_elements < args_size) args_size = args.num_elements;
|
|
|
|
return LaunchQueue::Add(tid, args.pointer, args_size);
|
2018-04-18 10:57:18 +01:00
|
|
|
}
|
|
|
|
|
2018-10-30 05:33:56 +00:00
|
|
|
void ShellService::ClearLaunchQueue() {
|
|
|
|
LaunchQueue::Clear();
|
2018-05-05 19:41:39 +01:00
|
|
|
}
|
2018-10-25 20:52:01 +01:00
|
|
|
|
|
|
|
/* SetExternalContentSource extension */
|
2018-10-30 05:33:56 +00:00
|
|
|
Result ShellService::SetExternalContentSource(Out<MovedHandle> out, u64 tid) {
|
2018-10-25 20:52:01 +01:00
|
|
|
Handle server_h;
|
|
|
|
Handle client_h;
|
|
|
|
|
|
|
|
Result rc;
|
|
|
|
if (R_FAILED(rc = svcCreateSession(&server_h, &client_h, 0, 0))) {
|
2018-10-30 05:33:56 +00:00
|
|
|
return rc;
|
2018-10-25 20:52:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Service service;
|
|
|
|
serviceCreate(&service, client_h);
|
|
|
|
ContentManagement::SetExternalContentSource(tid, FsFileSystem {service});
|
2018-10-30 05:33:56 +00:00
|
|
|
out.SetValue(server_h);
|
|
|
|
return 0;
|
2018-10-25 20:52:01 +01:00
|
|
|
}
|