]> git.ozlabs.org Git - petitboot/blobdiff - devices/message.h
Initial support for multiple UIs
[petitboot] / devices / message.h
diff --git a/devices/message.h b/devices/message.h
deleted file mode 100644 (file)
index 7a5d4f2..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-
-#ifndef _MESSAGE_H
-#define _MESSAGE_H
-
-enum device_action {
-       DEV_ACTION_ADD_DEVICE = 0,
-       DEV_ACTION_ADD_OPTION = 1,
-       DEV_ACTION_REMOVE_DEVICE = 2,
-       DEV_ACTION_REMOVE_OPTION = 3
-};
-
-struct device {
-       char *id;
-       char *name;
-       char *description;
-       char *icon_file;
-};
-
-struct boot_option {
-       char *id;
-       char *name;
-       char *description;
-       char *icon_file;
-       char *boot_image_file;
-       char *initrd_file;
-       char *boot_args;
-};
-
-
-#endif /* _MESSAGE_H */