summaryrefslogtreecommitdiff
path: root/src/state.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/state.h')
-rw-r--r--src/state.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/state.h b/src/state.h
new file mode 100644
index 0000000..25bcc61
--- /dev/null
+++ b/src/state.h
@@ -0,0 +1,18 @@
+/*
+ * Copyright (c) 2006 Dell, Inc.
+ * by Matt Domsch <Matt_Domsch@dell.com>
+ * Licensed under the GNU General Public license, version 2.
+ */
+#ifndef LIBBIOSDEVICE_STATE_H_INCLUDED
+#define LIBBIOSDEVICE_STATE_H_INCLUDED
+
+#include "list.h"
+
+struct libbiosdevname_state {
+ struct list_head bios_devices;
+ struct list_head pci_devices;
+ struct list_head pcmcia_devices;
+ struct list_head network_devices;
+};
+
+#endif /* LIBBIOSDEVICESTATE_H_INCLUDED */