libnx/nx/include/switch/services/spsm.h
friedkeenan da4c060278 Add a bunch of GetServiceSession functions (#305)
* Add a bunch of GetServiceSession functions
2019-07-13 15:09:28 -04:00

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);