Blame src/skin/ptyc_skin_default.c
|
|
0efa8c |
#include "ptycon_driver_impl.h"
|
|
|
0efa8c |
#include "argv/argv.h"
|
|
|
0efa8c |
|
|
|
0efa8c |
const struct argv_option ptyc_default_options[] = {
|
|
|
0efa8c |
{"version", 'v',TAG_VERSION,ARGV_OPTARG_NONE,0,0,0,
|
|
|
0efa8c |
"show version information"},
|
|
|
0efa8c |
|
|
|
0efa8c |
{"help", 'h',TAG_HELP,ARGV_OPTARG_OPTIONAL,0,"short|long",0,
|
|
|
0efa8c |
"show usage information [listing %s options only]"},
|
|
|
0efa8c |
|
|
|
64c887 |
{"debug", 'd',TAG_DEBUG,ARGV_OPTARG_OPTIONAL,0,
|
|
|
64c887 |
"event|oven|raw",0,
|
|
|
64c887 |
"start an internal thread for debugging purposes. "
|
|
|
64c887 |
"event: display trace information for low-level console "
|
|
|
64c887 |
"events; oven|raw: start a pseudo client using a pty handle "
|
|
|
64c887 |
"in [cooked|raw] mode. default is 'event'."},
|
|
|
64c887 |
|
|
|
0efa8c |
{0,0,0,0,0,0,0,0}
|
|
|
0efa8c |
};
|