mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-25 23:14:15 +01:00
Stub IApplicationFunctions::GetNotificationStorageChannelEvent
This commit is contained in:
parent
7c623f8301
commit
299d11d86f
@ -14,7 +14,8 @@ namespace skyline::service::am {
|
|||||||
IApplicationFunctions::IApplicationFunctions(const DeviceState &state, ServiceManager &manager)
|
IApplicationFunctions::IApplicationFunctions(const DeviceState &state, ServiceManager &manager)
|
||||||
: BaseService(state, manager),
|
: BaseService(state, manager),
|
||||||
gpuErrorEvent(std::make_shared<type::KEvent>(state, false)),
|
gpuErrorEvent(std::make_shared<type::KEvent>(state, false)),
|
||||||
friendInvitationStorageChannelEvent(std::make_shared<type::KEvent>(state, false)) {}
|
friendInvitationStorageChannelEvent(std::make_shared<type::KEvent>(state, false)),
|
||||||
|
notificationStorageChannelEvent(std::make_shared<type::KEvent>(state, false)) {}
|
||||||
|
|
||||||
Result IApplicationFunctions::PopLaunchParameter(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response) {
|
Result IApplicationFunctions::PopLaunchParameter(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response) {
|
||||||
constexpr u32 LaunchParameterMagic{0xC79497CA}; //!< The magic of the application launch parameters
|
constexpr u32 LaunchParameterMagic{0xC79497CA}; //!< The magic of the application launch parameters
|
||||||
@ -182,4 +183,11 @@ namespace skyline::service::am {
|
|||||||
Result IApplicationFunctions::TryPopFromFriendInvitationStorageChannel(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response) {
|
Result IApplicationFunctions::TryPopFromFriendInvitationStorageChannel(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response) {
|
||||||
return result::NotAvailable;
|
return result::NotAvailable;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Result IApplicationFunctions::GetNotificationStorageChannelEvent(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response) {
|
||||||
|
auto handle{state.process->InsertItem(notificationStorageChannelEvent)};
|
||||||
|
Logger::Warn("Notification Storage Channel Event Handle: 0x{:X}", handle);
|
||||||
|
response.copyHandles.push_back(handle);
|
||||||
|
return {};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -21,6 +21,7 @@ namespace skyline::service::am {
|
|||||||
private:
|
private:
|
||||||
std::shared_ptr<type::KEvent> gpuErrorEvent; //!< The event signalled on GPU errors
|
std::shared_ptr<type::KEvent> gpuErrorEvent; //!< The event signalled on GPU errors
|
||||||
std::shared_ptr<type::KEvent> friendInvitationStorageChannelEvent; //!< The event signalled on friend invitations
|
std::shared_ptr<type::KEvent> friendInvitationStorageChannelEvent; //!< The event signalled on friend invitations
|
||||||
|
std::shared_ptr<type::KEvent> notificationStorageChannelEvent;
|
||||||
i32 previousProgramIndex{-1}; //!< There was no previous title
|
i32 previousProgramIndex{-1}; //!< There was no previous title
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@ -131,6 +132,12 @@ namespace skyline::service::am {
|
|||||||
|
|
||||||
Result TryPopFromFriendInvitationStorageChannel(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response);
|
Result TryPopFromFriendInvitationStorageChannel(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Obtains a handle to the Notification StorageChannel KEvent
|
||||||
|
* @url https://switchbrew.org/wiki/Applet_Manager_services#GetNotificationStorageChannelEvent
|
||||||
|
*/
|
||||||
|
Result GetNotificationStorageChannelEvent(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response);
|
||||||
|
|
||||||
SERVICE_DECL(
|
SERVICE_DECL(
|
||||||
SFUNC(0x1, IApplicationFunctions, PopLaunchParameter),
|
SFUNC(0x1, IApplicationFunctions, PopLaunchParameter),
|
||||||
SFUNC(0x14, IApplicationFunctions, EnsureSaveData),
|
SFUNC(0x14, IApplicationFunctions, EnsureSaveData),
|
||||||
@ -150,7 +157,8 @@ namespace skyline::service::am {
|
|||||||
SFUNC(0x7B, IApplicationFunctions, GetPreviousProgramIndex),
|
SFUNC(0x7B, IApplicationFunctions, GetPreviousProgramIndex),
|
||||||
SFUNC(0x82, IApplicationFunctions, GetGpuErrorDetectedSystemEvent),
|
SFUNC(0x82, IApplicationFunctions, GetGpuErrorDetectedSystemEvent),
|
||||||
SFUNC(0x8C, IApplicationFunctions, GetFriendInvitationStorageChannelEvent),
|
SFUNC(0x8C, IApplicationFunctions, GetFriendInvitationStorageChannelEvent),
|
||||||
SFUNC(0x8D, IApplicationFunctions, TryPopFromFriendInvitationStorageChannel)
|
SFUNC(0x8D, IApplicationFunctions, TryPopFromFriendInvitationStorageChannel),
|
||||||
|
SFUNC(0x96, IApplicationFunctions, GetNotificationStorageChannelEvent)
|
||||||
)
|
)
|
||||||
|
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user