mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
0105455086
subrepo: subdir: "libraries" merged: "07af583b" upstream: origin: "https://github.com/Atmosphere-NX/Atmosphere-libs" branch: "master" commit: "07af583b" git-subrepo: version: "0.4.0" origin: "https://github.com/ingydotnet/git-subrepo" commit: "5d6aba9"
27 lines
No EOL
686 B
C
27 lines
No EOL
686 B
C
/**
|
|
* @file ldr_ams.h
|
|
* @brief Loader (ldr:*) IPC wrapper for Atmosphere extensions.
|
|
* @author SciresM
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
#include <switch.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
u64 keys_down;
|
|
u64 flags;
|
|
} CfgOverrideStatus;
|
|
|
|
Result ldrPmAtmosphereHasLaunchedProgram(bool *out, u64 program_id);
|
|
Result ldrDmntAtmosphereHasLaunchedProgram(bool *out, u64 program_id);
|
|
|
|
Result ldrPmAtmosphereGetProgramInfo(LoaderProgramInfo *out, CfgOverrideStatus *out_status, const NcmProgramLocation *loc);
|
|
Result ldrPmAtmospherePinProgram(u64 *out, const NcmProgramLocation *loc, const CfgOverrideStatus *status);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |