Changeset 35959 in vbox for trunk/include/VBox
- Timestamp:
- Feb 14, 2011 2:30:03 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70020
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/rawpci.h
r35946 r35959 48 48 { 49 49 /* in */ 50 RT HCPHYS StartAddress;50 RTGCPHYS StartAddress; 51 51 uint64_t iRegionSize; 52 52 uint32_t fFlags; … … 130 130 } PCIRAWREQPCICFGREAD; 131 131 132 133 /** 134 * Handle for the raw PCI device. 135 */ 136 typedef RTR0PTR PCIRAWDEVHANDLE; 137 132 138 /** 133 139 * Request buffer use for communication with the driver. … … 144 150 int32_t iRequest; 145 151 /** Host device request targetted to. */ 146 uint32_tTargetDevice;152 PCIRAWDEVHANDLE TargetDevice; 147 153 /** Call parameters. */ 148 154 union … … 160 166 } PCIRAWSENDREQ; 161 167 typedef PCIRAWSENDREQ *PPCIRAWSENDREQ; 162 163 168 164 169 /** … … 222 227 */ 223 228 DECLR0CALLBACKMEMBER(void, pfnRelease,(PRAWPCIDEVPORT pPort)); 229 230 /** 231 * Init device. 232 * 233 * @param pPort Pointer to this structure. 234 * @param fFlags Initialization flags. 235 */ 236 DECLR0CALLBACKMEMBER(int, pfnInit,(PRAWPCIDEVPORT pPort, 237 uint32_t fFlags)); 224 238 239 240 225 241 /** Structure version number. (RAWPCIDEVPORT_VERSION) */ 226 242 uint32_t u32VersionEnd; … … 267 283 } RAWPCIFACTORY; 268 284 269 270 285 #define RAWPCIFACTORY_UUID_STR "c0268f49-e1e4-402b-b7e0-eb8d09659a9b" 271 286
Note:
See TracChangeset
for help on using the changeset viewer.