mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 20:42:44 +02:00
11 lines
312 B
C
11 lines
312 B
C
#pragma once
|
|
#include <switch/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);
|