diff options
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/perk_driver_impl.h | 3 | ||||
-rw-r--r-- | src/internal/perk_synopsis_impl.h | 31 |
2 files changed, 33 insertions, 1 deletions
diff --git a/src/internal/perk_driver_impl.h b/src/internal/perk_driver_impl.h index 453a032..db0ffc7 100644 --- a/src/internal/perk_driver_impl.h +++ b/src/internal/perk_driver_impl.h @@ -17,6 +17,9 @@ extern const struct argv_option pe_perk_options[]; extern const struct argv_option pe_ar_options[]; extern const struct argv_option pe_nm_options[]; extern const struct argv_option pe_size_options[]; +extern const struct argv_option pe_strip_options[]; +extern const struct argv_option pe_ranlib_options[]; +extern const struct argv_option pe_strings_options[]; enum app_tags { TAG_HELP, diff --git a/src/internal/perk_synopsis_impl.h b/src/internal/perk_synopsis_impl.h index 921a1db..1c53f52 100644 --- a/src/internal/perk_synopsis_impl.h +++ b/src/internal/perk_synopsis_impl.h @@ -44,8 +44,37 @@ +#define PERK_STRIP_CMD_SYNOPSIS \ + "%s — PE/COFF Fluff Removal Utility\n\n" \ + "Synopsis:\n" \ + " %s [-V] [-v] [-p] [-o output] <file> \n" \ + " %s [-X] [-x] <file> ... \n" \ + " %s [-s] [-g|-d|-S] <file> ... \n" \ + " %s [-w] [-R secname] ... <file> ... \n" \ + " %s [-w] [-K symname] ... <file> ... \n" \ + " %s [-w] [-N symname] ... <file> ... \n\n" \ + "Options:\n" + + + +#define PERK_RANLIB_CMD_SYNOPSIS \ + "%s — PE/COFF Archive Indexer\n\n" \ + "Synopsis:\n" \ + " %s [-V] [-D|-U] [-t] <file> ...\n\n" \ + "Options:\n" + + + +#define PERK_STRINGS_CMD_SYNOPSIS \ + "%s — PE/COFF String Finder\n\n" \ + "Synopsis:\n" \ + " %s [-V] [-a] [-t format] [-n number] <file> ...\n\n" \ + "Options:\n" + + + #define PERK_AR_CMD_SYNOPSIS \ - "%s — the PE/COFF Resource Kit Archiver\n\n" \ + "%s — the PE/COFF Archive Manipulator\n\n" \ "Synopsis:\n" \ " %s -d [-v] <archive> <file> ...\n" \ " %s -p [-v] [-s] <archive> <file> ...\n" \ |