libnx
smm.h
Go to the documentation of this file.
1 /**
2  * @file smm.h
3  * @brief ServiceManager-IManager (sm:m) service IPC wrapper.
4  * @author SciresM
5  * @copyright libnx Authors
6  */
7 #pragma once
8 #include "../types.h"
9 #include "../services/sm.h"
10 #include "../services/fs.h"
11 
12 Result smManagerInitialize(void);
13 void smManagerExit(void);
14 
15 Result smManagerRegisterProcess(u64 pid, const void *acid_sac, size_t acid_sac_size, const void *aci0_sac, size_t aci0_sac_size);
16 Result smManagerUnregisterProcess(u64 pid);
u32 Result
Function error code result type.
Definition: types.h:46
uint64_t u64
64-bit unsigned integer.
Definition: types.h:24