diff options
author | Bob Gilligan <gilligan@vyatta.com> | 2010-02-05 09:54:11 -0800 |
---|---|---|
committer | Bob Gilligan <gilligan@vyatta.com> | 2010-02-05 09:54:11 -0800 |
commit | e1971e4774a6ebb5ed33a09bdd60afa2c0534b6f (patch) | |
tree | f4fc5aaccb4d9dac43ae7a825df9006532c1a059 /src/state.h | |
download | vyatta-biosdevname-e1971e4774a6ebb5ed33a09bdd60afa2c0534b6f.tar.gz vyatta-biosdevname-e1971e4774a6ebb5ed33a09bdd60afa2c0534b6f.zip |
Initial commit.debian/0.1
Diffstat (limited to 'src/state.h')
-rw-r--r-- | src/state.h | 18 |
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 */ |