diff options
Diffstat (limited to 'src/state.h')
-rw-r--r-- | src/state.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/state.h b/src/state.h index 25bcc61..220bffd 100644 --- a/src/state.h +++ b/src/state.h @@ -6,13 +6,16 @@ #ifndef LIBBIOSDEVICE_STATE_H_INCLUDED #define LIBBIOSDEVICE_STATE_H_INCLUDED +#include <pci/pci.h> #include "list.h" +#include "pirq.h" struct libbiosdevname_state { struct list_head bios_devices; struct list_head pci_devices; - struct list_head pcmcia_devices; struct list_head network_devices; + struct pci_access *pacc; + struct routing_table *pirq_table; }; #endif /* LIBBIOSDEVICESTATE_H_INCLUDED */ |