mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
15 lines
275 B
C
15 lines
275 B
C
/**
|
|
* @file bpc.h
|
|
* @brief Board power control (bpc) service IPC wrapper.
|
|
* @author XorTroll
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
#include "../types.h"
|
|
|
|
Result bpcInitialize(void);
|
|
void bpcExit(void);
|
|
|
|
Result bpcShutdownSystem(void);
|
|
Result bpcRebootSystem(void);
|