diff options
author | midipix <writeonce@midipix.org> | 2016-11-17 04:47:33 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-17 04:47:33 -0500 |
commit | ecf121476585a0c456689987c14d89ecc6364625 (patch) | |
tree | f3868eb156a5ec0036bd9b3937725cf1671c52af /src/skin | |
parent | d492af690ee0c2d756981f0a716299f726a7833e (diff) | |
download | perk-ecf121476585a0c456689987c14d89ecc6364625.tar.bz2 perk-ecf121476585a0c456689987c14d89ecc6364625.tar.xz |
driver: added --strings support (list strings found in the coff string table).
Diffstat (limited to 'src/skin')
-rw-r--r-- | src/skin/pe_skin_default.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/skin/pe_skin_default.c b/src/skin/pe_skin_default.c index 9c376e0..5c21363 100644 --- a/src/skin/pe_skin_default.c +++ b/src/skin/pe_skin_default.c @@ -20,6 +20,9 @@ const struct argv_option pe_default_options[] = { {"symbols", 'm',TAG_SYMBOLS,ARGV_OPTARG_NONE,0,0,0, "list symbols found in the coff symbol table"}, + {"strings", 's',TAG_STRINGS,ARGV_OPTARG_NONE,0,0,0, + "list strings found in the coff string table"}, + {"expsyms", 'e',TAG_EXPSYMS,ARGV_OPTARG_NONE,0,0,0, "list exported symbols" }, |