mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
19 lines
No EOL
357 B
C
19 lines
No EOL
357 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 pmdmntAtmosphereGetProcessInfo(Handle* out, u64 *tid_out, FsStorageId *sid_out, u64 pid);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |