mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
11 lines
305 B
C
11 lines
305 B
C
#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);
|