mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
19 lines
323 B
C
19 lines
323 B
C
|
/**
|
||
|
* @file pm_shim.h
|
||
|
* @brief Process Management (pm) IPC wrapper.
|
||
|
* @author SciresM
|
||
|
* @copyright libnx Authors
|
||
|
*/
|
||
|
#pragma once
|
||
|
#include <switch.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/* Atmosphere extension commands. */
|
||
|
Result pmdmntAtmosphereGetProcessHandle(Handle* out, u64 pid);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|