Changeset 35986 in vbox for trunk/include/VBox
- Timestamp:
- Feb 15, 2011 5:50:34 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/rawpci.h
r35959 r35986 32 32 RT_C_DECLS_BEGIN 33 33 34 /** 35 * Handle for the raw PCI device. 36 */ 37 typedef RTR0PTR PCIRAWDEVHANDLE; 38 39 40 /** Parameters buffer for PCIRAWR0_DO_OPEN_DEVICE call */ 41 typedef struct 42 { 43 /* in */ 44 uint32_t PciAddress; 45 uint32_t fFlags; 46 /* out */ 47 PCIRAWDEVHANDLE Device; 48 } PCIRAWREQOPENDEVICE; 49 50 /** Parameters buffer for PCIRAWR0_DO_CLOSE_DEVICE call */ 51 typedef struct 52 { 53 /* in */ 54 uint32_t fFlags; 55 } PCIRAWREQCLOSEDEVICE; 56 57 34 58 /** Parameters buffer for PCIRAWR0_DO_GET_REGION_INFO call */ 35 59 typedef struct … … 130 154 } PCIRAWREQPCICFGREAD; 131 155 132 133 /**134 * Handle for the raw PCI device.135 */136 typedef RTR0PTR PCIRAWDEVHANDLE;137 138 156 /** 139 157 * Request buffer use for communication with the driver. … … 154 172 union 155 173 { 174 PCIRAWREQOPENDEVICE aOpenDevice; 175 PCIRAWREQCLOSEDEVICE aCloseDevice; 156 176 PCIRAWREQGETREGIONINFO aGetRegionInfo; 157 177 PCIRAWREQMAPREGION aMapRegion; … … 172 192 typedef enum PCIRAWR0OPERATION 173 193 { 194 /* Open device. */ 195 PCIRAWR0_DO_OPEN_DEVICE, 196 /* Close device. */ 197 PCIRAWR0_DO_CLOSE_DEVICE, 174 198 /* Get PCI region info. */ 175 199 PCIRAWR0_DO_GET_REGION_INFO,
Note:
See TracChangeset
for help on using the changeset viewer.