libnx/nx/include/switch/services/apm.h

17 lines
439 B
C

/**
* @file apm.h
* @brief Performance management (apm) service IPC wrapper.
* @author yellows8
* @copyright libnx Authors
*/
#pragma once
#include "../types.h"
/// These are used internally by applet.
Result apmInitialize(void);
void apmExit(void);
Result apmSetPerformanceConfiguration(u32 PerformanceMode, u32 PerformanceConfiguration);
Result apmGetPerformanceConfiguration(u32 PerformanceMode, u32 *PerformanceConfiguration);