taiHEN  1.0
CFW framework for PS Vita
hen.h
1 
4 #ifndef TAI_HEN_HEADER
5 #define TAI_HEN_HEADER
6 
17 #define TAIHEN_CONFIG_FILE "ux0:tai/config.txt"
18 
22 typedef struct _tai_plugin_load {
23  SceUID pid;
24  int flags;
26 
27 void hen_load_plugin(const char *module, void *param);
28 int hen_load_config(void);
29 int hen_free_config(void);
30 int hen_add_patches(void);
31 int hen_remove_patches(void);
32 
35 #endif // TAI_HEN_HEADER
int hen_free_config(void)
Frees tai config file.
Definition: hen.c:467
struct _tai_plugin_load tai_plugin_load_t
Arguments passed from taiHEN to config parser back to taiHEN.
void hen_load_plugin(const char *module, void *param)
Callback to config parser to load a plugin.
Definition: hen.c:482
SceUID pid
Process to load plugin to.
Definition: hen.h:23
int hen_load_config(void)
Load tai config file.
Definition: hen.c:392
Arguments passed from taiHEN to config parser back to taiHEN.
Definition: hen.h:22
int flags
Flags for loading.
Definition: hen.h:24
int hen_add_patches(void)
Add kernel patches to disable SELF signature checks.
Definition: hen.c:507
int hen_remove_patches(void)
Removes the kernel patches for SELF loading.
Definition: hen.c:641