mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-24 22:02:39 +02:00
14 lines
239 B
C
14 lines
239 B
C
/**
|
|
* @file psm.h
|
|
* @brief PSM service IPC wrapper.
|
|
* @author XorTroll
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
#include "../types.h"
|
|
|
|
Result psmInitialize(void);
|
|
void psmExit(void);
|
|
|
|
Result psmGetBatteryChargePercentage(u32 *out);
|