mirror of
https://github.com/shchmue/Lockpick.git
synced 2024-11-16 08:09:19 +01:00
922cf3f4c4
Changed titlekey dump methodology to no longer need reboot. Added SD seed dumping. Reorganized and clarified UI text. Swapped C++-style I/O for C-style. Tightened up dependencies.
12 lines
406 B
C
12 lines
406 B
C
#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
|
|
Result esListCommonTicket(u32 *numRightsIdsWritten, NcmRightsId *outBuf, size_t bufSize);
|
|
Result esListPersonalizedTicket(u32 *numRightsIdsWritten, NcmRightsId *outBuf, size_t bufSize); |