aboutsummaryrefslogtreecommitdiff
path: root/xorg-server/include/optionstr.h
diff options
context:
space:
mode:
Diffstat (limited to 'xorg-server/include/optionstr.h')
-rw-r--r--xorg-server/include/optionstr.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/xorg-server/include/optionstr.h b/xorg-server/include/optionstr.h
new file mode 100644
index 000000000..a71d245fa
--- /dev/null
+++ b/xorg-server/include/optionstr.h
@@ -0,0 +1,14 @@
+#ifndef OPTIONSTR_H_
+#define OPTIONSTR_H_
+#include "list.h"
+
+
+struct _InputOption {
+ GenericListRec list;
+ char *opt_name;
+ char *opt_val;
+ int opt_used;
+ char *opt_comment;
+};
+
+#endif /* INPUTSTRUCT_H */