mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-09 20:21:45 +00:00
16 lines
410 B
C
16 lines
410 B
C
#pragma once
|
|
|
|
#ifndef __ES_H__
|
|
#define __ES_H__
|
|
|
|
#include <switch.h>
|
|
|
|
Result esInitialize(void);
|
|
void esExit(void);
|
|
|
|
Result esCountCommonTicket(s32 *out_count);
|
|
Result esCountPersonalizedTicket(s32 *out_count);
|
|
Result esListCommonTicket(s32 *out_entries_written, FsRightsId *out_ids, s32 count);
|
|
Result esListPersonalizedTicket(s32 *out_entries_written, FsRightsId *out_ids, s32 count);
|
|
|
|
#endif /* __ES_H__ */
|