libnx/nx/include/switch/services/pgl.h
2020-04-14 21:29:38 +02:00

21 lines
391 B
C

/**
* @file pgl.h
* @brief PGL service IPC wrapper.
* @author SciresM
* @copyright libnx Authors
*/
#pragma once
#include "../types.h"
#include "../sf/service.h"
/// Initialize pgl.
Result pglInitialize(void);
/// Exit pgl.
void pglExit(void);
/// Gets the Service object for the actual pgl service session.
Service* pglGetServiceSession(void);
Result pglTerminateProcess(u64 pid);