vita-toolchain

git clone https://git.neptards.moe/neptards/vita-toolchain.git
Log | Files | Refs | README | LICENSE

elf-create-argp.h (378B)


      1 #ifndef ELF_CREATE_ARGP_H
      2 #define ELF_CREATE_ARGP_H
      3 
      4 typedef struct elf_create_args
      5 {
      6 	int log_level;
      7 	const char *exports;
      8 	const char *input;
      9 	const char *output;
     10 	int extra_imports_count;
     11 	char **extra_imports;
     12 	int check_stub_count;
     13 } elf_create_args;
     14 
     15 
     16 int parse_arguments(int argc, char *argv[], elf_create_args *arguments);
     17 
     18 #endif // ELF_CREATE_ARGP_H