diff options
author | midipix <writeonce@midipix.org> | 2015-12-14 01:58:21 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2015-12-14 01:58:21 -0500 |
commit | f4603994a39431c8cee036216a6d15ab7281b0c6 (patch) | |
tree | 8fc779f0c3ec5e8f0041c89b1700ffd2120f6b42 /src/skin/sfrt_skin_default.c | |
parent | 668af644e512cc911a32a955078866d9151bae80 (diff) | |
download | sofort-f4603994a39431c8cee036216a6d15ab7281b0c6.tar.bz2 sofort-f4603994a39431c8cee036216a6d15ab7281b0c6.tar.xz |
initial commit.
Diffstat (limited to 'src/skin/sfrt_skin_default.c')
-rw-r--r-- | src/skin/sfrt_skin_default.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/skin/sfrt_skin_default.c b/src/skin/sfrt_skin_default.c new file mode 100644 index 0000000..ef3f6b9 --- /dev/null +++ b/src/skin/sfrt_skin_default.c @@ -0,0 +1,18 @@ +#include "sofort_driver_impl.h" +#include "argv/argv.h" + +const struct argv_option sfrt_default_options[] = { + {"version", 'v',TAG_VERSION,ARGV_OPTARG_NONE,0,0, + "show version information"}, + + {"help", 'h',TAG_HELP,ARGV_OPTARG_OPTIONAL,"short|long",0, + "show usage information [listing %s options only]"}, + + {"output-dummy", 'o',TAG_OUTPUT_DUMMY,ARGV_OPTARG_REQUIRED,0,"<anystring>", + "output %s"}, + + {"output-property", 'p',TAG_OUTPUT_PROPERTY,ARGV_OPTARG_REQUIRED,"name|address",0, + "output %s"}, + + {0} +}; |