mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-22 18:26:39 +00:00
16 lines
399 B
C
16 lines
399 B
C
#pragma once
|
|
|
|
#ifndef __ES_H__
|
|
#define __ES_H__
|
|
|
|
#include <switch.h>
|
|
|
|
Result esInitialize();
|
|
void esExit();
|
|
|
|
Result esCountCommonTicket(u32 *num_tickets);
|
|
Result esCountPersonalizedTicket(u32 *num_tickets);
|
|
Result esListCommonTicket(u32 *numRightsIdsWritten, FsRightsId *outBuf, size_t bufSize);
|
|
Result esListPersonalizedTicket(u32 *numRightsIdsWritten, FsRightsId *outBuf, size_t bufSize);
|
|
|
|
#endif
|