mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 20:42:44 +02:00
17 lines
326 B
C
17 lines
326 B
C
/**
|
|
* @file spsm.h
|
|
* @brief SPSM service IPC wrapper.
|
|
* @author SciresM
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
#include "../types.h"
|
|
#include "../services/sm.h"
|
|
|
|
Result spsmInitialize(void);
|
|
void spsmExit(void);
|
|
Service* spsmGetServiceSession(void);
|
|
|
|
Result spsmShutdown(bool reboot);
|
|
Result spsmPutErrorState(void);
|