mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
0105455086
subrepo: subdir: "libraries" merged: "07af583b" upstream: origin: "https://github.com/Atmosphere-NX/Atmosphere-libs" branch: "master" commit: "07af583b" git-subrepo: version: "0.4.0" origin: "https://github.com/ingydotnet/git-subrepo" commit: "5d6aba9"
35 lines
No EOL
1 KiB
C
35 lines
No EOL
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 |