2018-12-28 22:06:18 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <switch/types.h>
|
|
|
|
#include <switch/services/ncm.h>
|
|
|
|
|
|
|
|
Result esInitialize();
|
|
|
|
void esExit();
|
|
|
|
|
|
|
|
Result esCountCommonTicket(u32 *num_tickets); //9
|
|
|
|
Result esCountPersonalizedTicket(u32 *num_tickets); // 10
|
2019-10-30 12:19:45 +01:00
|
|
|
Result esListCommonTicket(u32 *numRightsIdsWritten, NcmRightsId *outBuf, size_t bufSize);
|
|
|
|
Result esListPersonalizedTicket(u32 *numRightsIdsWritten, NcmRightsId *outBuf, size_t bufSize);
|