Stub caps:u

This commit is contained in:
Dima 2022-11-04 15:16:54 +03:00 committed by Billy Laws
parent 27ff1ae19b
commit 74afca4aab
4 changed files with 27 additions and 0 deletions

View File

@ -290,6 +290,7 @@ add_library(skyline SHARED
${source_DIR}/skyline/services/btm/IBtmUserCore.cpp
${source_DIR}/skyline/services/capsrv/IAlbumAccessorService.cpp
${source_DIR}/skyline/services/capsrv/ICaptureControllerService.cpp
${source_DIR}/skyline/services/capsrv/IAlbumApplicationService.cpp
${source_DIR}/skyline/services/ro/IRoInterface.cpp
${source_DIR}/skyline/applet/applet_creator.cpp
${source_DIR}/skyline/applet/controller_applet.cpp

View File

@ -0,0 +1,8 @@
// SPDX-License-Identifier: MPL-2.0
// Copyright © 2022 Skyline Team and Contributors (https://github.com/skyline-emu/)
#include "IAlbumApplicationService.h"
namespace skyline::service::capsrv {
IAlbumApplicationService::IAlbumApplicationService(const DeviceState &state, ServiceManager &manager) : BaseService(state, manager) {}
}

View File

@ -0,0 +1,16 @@
// SPDX-License-Identifier: MPL-2.0
// Copyright © 2022 Skyline Team and Contributors (https://github.com/skyline-emu/)
#pragma once
#include <services/serviceman.h>
namespace skyline::service::capsrv {
/**
* @url https://switchbrew.org/wiki/Capture_services#caps:u
*/
class IAlbumApplicationService : public BaseService {
public:
IAlbumApplicationService(const DeviceState &state, ServiceManager &manager);
};
}

View File

@ -51,6 +51,7 @@
#include "btm/IBtmUser.h"
#include "capsrv/IAlbumAccessorService.h"
#include "capsrv/ICaptureControllerService.h"
#include "capsrv/IAlbumApplicationService.h"
#include "ro/IRoInterface.h"
#include "serviceman.h"
@ -130,6 +131,7 @@ namespace skyline::service {
SERVICE_CASE(btm::IBtmUser, "btm:u")
SERVICE_CASE(capsrv::IAlbumAccessorService, "caps:a")
SERVICE_CASE(capsrv::ICaptureControllerService, "caps:c")
SERVICE_CASE(capsrv::IAlbumApplicationService, "caps:u")
SERVICE_CASE(nim::IShopServiceAccessServerInterface, "nim:eca")
SERVICE_CASE(ro::IRoInterface, "ldr:ro")
default: