Index: /trunk/include/VBox/pci.h
===================================================================
--- /trunk/include/VBox/pci.h	(revision 30897)
+++ /trunk/include/VBox/pci.h	(revision 30898)
@@ -450,4 +450,25 @@
 }
 
+/**
+ * Sets offset to capability list.
+ *
+ * @param   pPciDev         The PCI device.
+ * @param   u8Offset        The offset to capability list.
+ */
+DECLINLINE(void) PCIDevSetCapabilityList(PPCIDEVICE pPciDev, uint8_t u8Offset)
+{
+    pPciDev->config[VBOX_PCI_CAPABILITY_LIST] = u8Offset;
+} 
+
+/**
+ * Returns offset to capability list.
+ *
+ * @returns offset to capability list.
+ * @param   pPciDev         The PCI device.
+ */
+DECLINLINE(uint8_t) PCIDevGetCapabilityList(PPCIDEVICE pPciDev)
+{
+    return pPciDev->config[VBOX_PCI_CAPABILITY_LIST];
+} 
 
 /**
