Blame src/skin/pe_skin_default.c

249590
#include "perk_driver_impl.h"
249590
#include "argv/argv.h"
249590
249590
const struct argv_option pe_default_options[] = {
249590
	{"version",	'v',TAG_VERSION,ARGV_OPTARG_NONE,	0,0,
249590
								"show version information"},
249590
249590
	{"help",	'h',TAG_HELP,	ARGV_OPTARG_OPTIONAL,	"short|long",0,
249590
								"show usage information "
249590
								"[listing %s options only]"},
249590
249590
	{"output",	'o',TAG_OUTPUT,	ARGV_OPTARG_REQUIRED,	0,"<file>",
249590
								"write output to %s"},
249590
249590
	{"pretty",	'p',TAG_PRETTY,	ARGV_OPTARG_REQUIRED,	"yaml",0,
249590
								"format output for parsing by %s"},
249590
249590
	{"expsyms",	'e',TAG_EXPSYMS,ARGV_OPTARG_NONE,	0,0,
249590
								"print exported symbols" },
249590
249590
	{"implibs",	'i',TAG_IMPLIBS,ARGV_OPTARG_NONE,	0,0,
249590
								"list direct dependency libraries"},
249590
249590
	{"impsyms",	'I',TAG_IMPSYMS,ARGV_OPTARG_NONE,	0,0,
249590
								"list direct dependency libraries "
249590
								"along with required symbols"},
249590
	{0}
249590
};