summaryrefslogtreecommitdiff
path: root/src/state.h
blob: 25bcc6175825f744c87525fddaa8a3833c41522b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 */