mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 20:21:44 +00:00
f534d3498e
subrepo: subdir: "stratosphere/libstratosphere" merged: "0c5dab80" upstream: origin: "https://github.com/Atmosphere-NX/libstratosphere" branch: "master" commit: "0c5dab80" git-subrepo: version: "0.4.0" origin: "https://github.com/ingydotnet/git-subrepo" commit: "5d6aba9"
19 lines
No EOL
368 B
C
19 lines
No EOL
368 B
C
/**
|
|
* @file pm_ams.h
|
|
* @brief Process Manager (pm:*) IPC wrapper for Atmosphere extensions.
|
|
* @author SciresM
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
#include <switch.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
Result pminfoAtmosphereGetProcessId(u64 *out_pid, u64 tid);
|
|
Result pminfoAtmosphereHasLaunchedTitle(bool *out, u64 tid);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |