mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
c2d9ac8f5c
Also greatly refactors libstratosphere, and does a lot of other things. There is a lot of code in this one.
22 lines
No EOL
486 B
C
22 lines
No EOL
486 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);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |