mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2025-01-10 03:27:23 -03:00
16 lines
402 B
C
16 lines
402 B
C
#pragma once
|
|
|
|
#ifndef __ES_H__
|
|
#define __ES_H__
|
|
|
|
#include <switch.h>
|
|
|
|
Result esInitialize();
|
|
void esExit();
|
|
|
|
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__ */
|