mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 12:11:43 +00:00
35 lines
1 KiB
C
35 lines
1 KiB
C
|
/**
|
||
|
* @file sm_ams.h
|
||
|
* @brief Service manager (sm) IPC wrapper for Atmosphere extensions.
|
||
|
* @author SciresM
|
||
|
* @copyright libnx Authors
|
||
|
*/
|
||
|
#pragma once
|
||
|
#include <switch/types.h>
|
||
|
#include <switch/kernel/event.h>
|
||
|
#include <switch/services/sm.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
Result smAtmosphereHasService(bool *out, SmServiceName name);
|
||
|
Result smAtmosphereWaitService(SmServiceName name);
|
||
|
Result smAtmosphereHasMitm(bool *out, SmServiceName name);
|
||
|
Result smAtmosphereWaitMitm(SmServiceName name);
|
||
|
|
||
|
Result smAtmosphereMitmInitialize(void);
|
||
|
void smAtmosphereMitmExit(void);
|
||
|
Service *smAtmosphereMitmGetServiceSession();
|
||
|
|
||
|
Result smAtmosphereOpenSession(Service *out);
|
||
|
void smAtmosphereCloseSession(Service *srv);
|
||
|
|
||
|
Result smAtmosphereMitmInstall(Service *fwd_srv, Handle *handle_out, Handle *query_out, SmServiceName name);
|
||
|
Result smAtmosphereMitmUninstall(SmServiceName name);
|
||
|
Result smAtmosphereMitmDeclareFuture(SmServiceName name);
|
||
|
Result smAtmosphereMitmAcknowledgeSession(Service *srv_out, void *info_out, SmServiceName name);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|