mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-24 22:02:39 +02:00
18 lines
336 B
C
18 lines
336 B
C
/**
|
|
* @file pctl.h
|
|
* @brief Parental Controls service IPC wrapper.
|
|
* @author yellows8
|
|
* @copyright libnx Authors
|
|
*/
|
|
|
|
#pragma once
|
|
#include "../kernel/ipc.h"
|
|
#include "../services/sm.h"
|
|
|
|
Result pctlInitialize(void);
|
|
void pctlExit(void);
|
|
|
|
/// Gets whether Parental Controls are enabled.
|
|
Result pctlIsRestrictionEnabled(bool *flag);
|
|
|