diff options
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/argv/argv.h | 4 | ||||
-rw-r--r-- | src/internal/perk_driver_impl.h | 14 |
2 files changed, 18 insertions, 0 deletions
diff --git a/src/internal/argv/argv.h b/src/internal/argv/argv.h index 36615f6..b6be2a8 100644 --- a/src/internal/argv/argv.h +++ b/src/internal/argv/argv.h @@ -104,6 +104,8 @@ static void argv_free(struct argv_meta *); /* implementation of static functions */ /*------------------------------------*/ +#ifdef ARGV_DRIVER + static const struct argv_option * argv_short_option( const char * ch, const struct argv_option options[], @@ -870,3 +872,5 @@ static void argv_usage( } #endif + +#endif diff --git a/src/internal/perk_driver_impl.h b/src/internal/perk_driver_impl.h new file mode 100644 index 0000000..016a369 --- /dev/null +++ b/src/internal/perk_driver_impl.h @@ -0,0 +1,14 @@ +#ifndef PE_DRIVER_IMPL_H +#define PE_DRIVER_IMPL_H + +enum app_tags { + TAG_HELP, + TAG_VERSION, + TAG_OUTPUT, + TAG_PRETTY, + TAG_EXPSYMS, + TAG_IMPLIBS, + TAG_IMPSYMS, +}; + +#endif |