aboutsummaryrefslogtreecommitdiff
path: root/examples/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/config.h')
-rw-r--r--examples/config.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/config.h b/examples/config.h
index c5f0c8dd..e1765c57 100644
--- a/examples/config.h
+++ b/examples/config.h
@@ -12,12 +12,19 @@ struct output_config {
struct wl_list link;
};
+struct device_config {
+ char *name;
+ char *mapped_output;
+ struct wl_list link;
+};
+
struct example_config {
struct {
char *mapped_output;
} cursor;
struct wl_list outputs;
+ struct wl_list devices;
char *config_path;
};