]> git.cworth.org Git - ttt/blobdiff - src/ttt-args.h
2005-11-09 Carl Worth <cworth@cworth.org>
[ttt] / src / ttt-args.h
index f5e117a607cc4fe089d574c1821086f717397fdb..7c18acde62878beb244004a16eedbcf9b390d1aa 100644 (file)
 #include "config.h"
 #endif
 
 #include "config.h"
 #endif
 
+#define TTT_ARGS_HOST_DEFAULT "localhost"
+#define TTT_ARGS_PORT_DEFAULT "5334"
+/* NULL means to just log to stderr. */
+#define TTT_ARGS_LOG_FILE_DEFAULT NULL
+
 typedef struct ttt_args
 {
 typedef struct ttt_args
 {
-    /* XXX: SAMPLE:
-    char *display;
-    */
-    char *file;
-
+    char *host;
+    char *port;
+    char *log_file;
 } ttt_args_t;
 
 int
 } ttt_args_t;
 
 int
-ttt_args_parse(ttt_args_t *args, int argc, char *argv[], int *args_first);
+ttt_args_parse(ttt_args_t *args, int argc, char *argv[]);
 
 #endif
 
 #endif