mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 20:42:44 +02:00
17 lines
439 B
C
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);
|