Changeset 80701 in vbox for trunk/include
- Timestamp:
- Sep 10, 2019 2:42:31 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 133241
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmdev.h
r80679 r80701 331 331 /** Size of the raw-mode instance data. */ 332 332 uint32_t cbInstanceRC; 333 /** Reserved, must be zero. */334 uint32_t uReserved1;333 /** Max number of PCI devices. */ 334 uint32_t cMaxPciDevices; 335 335 /** The description of the device. The UTF-8 string pointed to shall, like this structure, 336 336 * remain unchanged from registration till VM destruction. */ … … 411 411 typedef PDMDEVREGR3 const *PCPDMDEVREGR3; 412 412 /** Current DEVREGR3 version number. */ 413 #define PDM_DEVREGR3_VERSION PDM_VERSION_MAKE(0xffff, 3, 0)413 #define PDM_DEVREGR3_VERSION PDM_VERSION_MAKE(0xffff, 4, 0) 414 414 415 415 … … 470 470 /** Indicates that the device needs to be notified before the drivers when resetting. */ 471 471 #define PDM_DEVREG_FLAGS_FIRST_RESET_NOTIFICATION UINT32_C(0x00040000) 472 473 /** MSI-X support (affects PCI device allocation size). */ 474 #define PDM_DEVREG_FLAGS_MSI_X UINT32_C(0x00100000) 472 475 473 476 /** This flag is used to indicate that the device has been converted to the … … 552 555 /** Size of the raw-mode instance data. */ 553 556 uint32_t cbInstanceRC; 554 /** Reserved, must be zero. */555 uint32_t uReserved1;557 /** Max number of PCI devices. */ 558 uint32_t cMaxPciDevices; 556 559 /** The description of the device. The UTF-8 string pointed to shall, like this structure, 557 560 * remain unchanged from registration till VM destruction. */ … … 660 663 /** Size of the raw-mode instance data. */ 661 664 uint32_t cbInstanceRC; 662 /** Reserved, must be zero. */663 uint32_t uReserved1;665 /** Max number of PCI devices. */ 666 uint32_t cMaxPciDevices; 664 667 /** The description of the device. The UTF-8 string pointed to shall, like this structure, 665 668 * remain unchanged from registration till VM destruction. */ … … 6216 6219 } 6217 6220 6218 /* 6221 /** 6219 6222 * Registers the device with the default PCI bus. 6220 6223 *
Note:
See TracChangeset
for help on using the changeset viewer.