mirror of
https://github.com/switchbrew/libnx.git
synced 2025-12-29 22:39:11 +01:00
19 lines
312 B
C
19 lines
312 B
C
/**
|
|
* @file es.h
|
|
* @brief ETicket service IPC wrapper.
|
|
* @author simontime
|
|
* @copyright libnx Authors
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "../kernel/ipc.h"
|
|
|
|
#include "../services/sm.h"
|
|
|
|
Result esInitialize(void);
|
|
void esExit(void);
|
|
|
|
Result esCountCommmonTicket(u32* out);
|
|
Result esCountPersonalizedTicket(u32* out);
|