mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
21 lines
No EOL
358 B
C
21 lines
No EOL
358 B
C
/**
|
|
* @file smm_ams.h
|
|
* @brief Service manager (sm:m) IPC wrapper for Atmosphere extensions.
|
|
* @author SciresM
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
#include <switch.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
Result smManagerAmsInitialize(void);
|
|
void smManagerAmsExit(void);
|
|
|
|
Result smManagerAmsEndInitialDefers(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |