mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-23 00:59:17 +01:00
Stub IsLargeResourceAvailable
This commit is contained in:
parent
dcd9e4ff61
commit
1c8736cb56
@ -11,4 +11,9 @@ namespace skyline::service::nim {
|
||||
manager.RegisterService(SRVREG(IShopServiceAccessServer), session, response);
|
||||
return {};
|
||||
}
|
||||
|
||||
Result IShopServiceAccessServerInterface::IsLargeResourceAvailable(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response) {
|
||||
response.Push<u8>(false);
|
||||
return {};
|
||||
}
|
||||
}
|
||||
|
@ -16,8 +16,11 @@ namespace skyline::service::nim {
|
||||
|
||||
Result CreateServerInterface(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response);
|
||||
|
||||
Result IsLargeResourceAvailable(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response);
|
||||
|
||||
SERVICE_DECL(
|
||||
SFUNC(0x0, IShopServiceAccessServerInterface, CreateServerInterface)
|
||||
SFUNC(0x0, IShopServiceAccessServerInterface, CreateServerInterface),
|
||||
SFUNC(0x4, IShopServiceAccessServerInterface, IsLargeResourceAvailable)
|
||||
)
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user