mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-28 05:34:11 -04:00
pm: update to reflect 17.0.0 internal design changes
This commit is contained in:
parent
274f6b63f2
commit
0c3afff4d3
13 changed files with 428 additions and 332 deletions
|
@ -16,6 +16,7 @@
|
|||
#include <stratosphere.hpp>
|
||||
#include "pm_info_service.hpp"
|
||||
#include "impl/pm_process_manager.hpp"
|
||||
#include "impl/pm_spec.hpp"
|
||||
|
||||
namespace ams::pm {
|
||||
|
||||
|
@ -34,11 +35,11 @@ namespace ams::pm {
|
|||
}
|
||||
|
||||
Result InformationService::GetAppletResourceLimitCurrentValue(sf::Out<pm::ResourceLimitValue> out) {
|
||||
R_RETURN(impl::GetAppletResourceLimitCurrentValue(out.GetPointer()));
|
||||
R_RETURN(impl::GetResourceLimitCurrentValue(out.GetPointer(), ResourceLimitGroup_Applet));
|
||||
}
|
||||
|
||||
Result InformationService::GetAppletResourceLimitPeakValue(sf::Out<pm::ResourceLimitValue> out) {
|
||||
R_RETURN(impl::GetAppletResourceLimitPeakValue(out.GetPointer()));
|
||||
R_RETURN(impl::GetResourceLimitPeakValue(out.GetPointer(), ResourceLimitGroup_Applet));
|
||||
}
|
||||
|
||||
/* Atmosphere extension commands. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue