Changeset 36260 in vbox for trunk/include
- Timestamp:
- Mar 11, 2011 12:57:35 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/rawpci.h
r36218 r36260 35 35 * Handle for the raw PCI device. 36 36 */ 37 typedef RTR0PTRPCIRAWDEVHANDLE;37 typedef uint32_t PCIRAWDEVHANDLE; 38 38 39 39 … … 271 271 272 272 /** 273 * Retain the object.274 *275 * It will normally be called while owning the internal semaphore.276 *277 * @param pPort Pointer to this structure.278 */279 DECLR0CALLBACKMEMBER(void, pfnRetain,(PRAWPCIDEVPORT pPort));280 281 /**282 * Releases the object.283 *284 * This must be called for every pfnRetain call.285 *286 *287 * @param pPort Pointer to this structure.288 */289 DECLR0CALLBACKMEMBER(void, pfnRelease,(PRAWPCIDEVPORT pPort));290 291 /**292 273 * Init device. 293 274 * … … 308 289 uint32_t fFlags)); 309 290 291 292 /** 293 * Destroy device. 294 * 295 * @param pPort Pointer to this structure. 296 */ 297 DECLR0CALLBACKMEMBER(int, pfnDestroy,(PRAWPCIDEVPORT pPort)); 310 298 311 299 /**
Note:
See TracChangeset
for help on using the changeset viewer.