diff options
author | midipix <writeonce@midipix.org> | 2016-11-16 09:41:57 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-16 09:50:42 -0500 |
commit | 016925a048e34c3eeb2815d6830d61771f0ed999 (patch) | |
tree | 701bc47cb86ab0f4da049f2a9b955de3424b812d /src/skin | |
parent | 39af3cb59a5bc2dff1fa1429623e1219d002a4b2 (diff) | |
download | perk-016925a048e34c3eeb2815d6830d61771f0ed999.tar.bz2 perk-016925a048e34c3eeb2815d6830d61771f0ed999.tar.xz |
driver: added --symbols support (list symbols found in coff symbol 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 aee0cc3..e33b8c0 100644 --- a/src/skin/pe_skin_default.c +++ b/src/skin/pe_skin_default.c @@ -17,6 +17,9 @@ const struct argv_option pe_default_options[] = { {"sections", 'c',TAG_SECTIONS,ARGV_OPTARG_NONE,0,0,0, "list image sections"}, + {"symbols", 's',TAG_SYMBOLS,ARGV_OPTARG_NONE,0,0,0, + "list symbols found in the coff symbol table"}, + {"expsyms", 'e',TAG_EXPSYMS,ARGV_OPTARG_NONE,0,0,0, "list exported symbols" }, |