1
0
Fork 0
mirror of https://github.com/DarkMatterCore/nxdumptool.git synced 2024-10-18 11:21:59 +01:00
nxdumptool/source/es.h
2019-08-16 21:45:29 -04:00

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