mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-12-28 08:05:29 +03:00
Stub caps:u
This commit is contained in:
parent
27ff1ae19b
commit
74afca4aab
@ -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
|
||||
|
@ -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) {}
|
||||
}
|
@ -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);
|
||||
};
|
||||
}
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user