Blame src/skin/pe_skin_perk.c

59b920
#include "perk_driver_impl.h"
2baf67
#include "perk_visibility_impl.h"
59b920
#include "argv/argv.h"
59b920
2baf67
const perk_hidden struct argv_option pe_perk_options[] = {
59b920
	{"version",	'v',TAG_VERSION,ARGV_OPTARG_NONE,0,0,0,
59b920
			"show version information"},
59b920
59b920
	{"help",	'h',TAG_HELP,ARGV_OPTARG_OPTIONAL,0,"short|long",0,
59b920
			"show usage information [listing %s options only]"},
59b920
59b920
	{"pretty",	'p',TAG_PRETTY,ARGV_OPTARG_REQUIRED,0,"yaml|dlltool",0,
59b920
			"format output for parsing by %s"},
59b920
59b920
	{"category",	'y',TAG_CATEGORY,ARGV_OPTARG_NONE,0,0,0,
59b920
			"print image category"},
59b920
59b920
	{"sections",	'c',TAG_SECTIONS,ARGV_OPTARG_NONE,0,0,0,
59b920
			"list image sections"},
59b920
59b920
	{"symbols",	'm',TAG_SYMBOLS,ARGV_OPTARG_NONE,0,0,0,
59b920
			"list symbols found in the coff symbol table"},
59b920
59b920
	{"strings",	's',TAG_STRINGS,ARGV_OPTARG_NONE,0,0,0,
59b920
			"list strings found in the coff string table"},
59b920
59b920
	{"expsyms",	'e',TAG_EXPSYMS,ARGV_OPTARG_NONE,0,0,0,
59b920
			"list exported symbols" },
59b920
59b920
	{"implibs",	'i',TAG_IMPLIBS,ARGV_OPTARG_NONE,0,0,0,
59b920
			"list .idata dependency libraries"},
59b920
59b920
	{"impsyms",	'I',TAG_IMPSYMS,ARGV_OPTARG_NONE,0,0,0,
59b920
			"list .idata dependency libraries "
59b920
			"along with imported symbols"},
59b920
59b920
	{"dsolibs",	'd',TAG_DSOLIBS,ARGV_OPTARG_NONE,0,0,0,
59b920
			"list .dsometa (mdso) dependency libraries"},
59b920
59b920
	{"dsosyms",	'D',TAG_DSOSYMS,ARGV_OPTARG_NONE,0,0,0,
59b920
			"list .dsometa (mdso) dependency libraries "
59b920
			"along with referenced symbols"},
59b920
59b920
	{"hdrdump",	'X',TAG_HDRDUMP,ARGV_OPTARG_OPTIONAL,0,
59b920
			"dos|image.dos|"
59b920
			"coff|coff.image|coff.object|coff.optional|"
59b920
			"sectbl|section.table|"
59b920
			"exphdr|export.header|"
59b920
			"imptbl|import.table",0,
59b920
			"output struct-based information for "
59b920
			"either all headers (the default) "
59b920
			"or a specific header"},
59b920
59b920
	{0,0,0,0,0,0,0,0}
59b920
};