libnx v4.9.0
Loading...
Searching...
No Matches
spsm.h
Go to the documentation of this file.
1/**
2 * @file spsm.h
3 * @brief SPSM service IPC wrapper.
4 * @author SciresM
5 * @copyright libnx Authors
6 */
7#pragma once
8#include "../types.h"
9#include "../sf/service.h"
10
11/// Initialize spsm.
13
14/// Exit spsm.
15void spsmExit(void);
16
17/// Gets the Service object for the actual spsm service session.
19
20Result spsmShutdown(bool reboot);
21Result spsmPutErrorState(void);
void spsmExit(void)
Exit spsm.
Result spsmInitialize(void)
Initialize spsm.
Service * spsmGetServiceSession(void)
Gets the Service object for the actual spsm service session.
Service object structure.
Definition service.h:14
u32 Result
Function error code result type.
Definition types.h:44