mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-22 04:52:39 +02:00
16 lines
457 B
C
16 lines
457 B
C
/**
|
|
* @file pm.h
|
|
* @brief Process management (pm*) service IPC wrapper.
|
|
* @author plutoo
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
#include "../types.h"
|
|
|
|
Result pmdmntInitialize(void);
|
|
Result pmdmntStartProcess(u64 pid);
|
|
Result pmdmntGetTitlePid(u64* pid_out, u64 title_id);
|
|
Result pmdmntEnableDebugForTitleId(Handle* handle_out, u64 title_id);
|
|
Result pmdmntGetApplicationPid(u64* pid_out);
|
|
Result pmdmntEnableDebugForApplication(Handle* handle_out);
|