mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
24 lines
No EOL
532 B
C
24 lines
No EOL
532 B
C
/**
|
|
* @file sm_mitm.h
|
|
* @brief Service manager (sm) IPC wrapper for Atmosphere extensions.
|
|
* @author SciresM
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
#include <switch.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
Result smMitMInitialize(void);
|
|
void smMitMExit(void);
|
|
Result smMitMGetService(Service* service_out, const char *name);
|
|
Result smMitMInstall(Handle *handle_out, Handle *query_out, const char *name);
|
|
Result smMitMUninstall(const char *name);
|
|
|
|
Result smMitMIsRegistered(const char *name);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |