Changeset 59348 in vbox for trunk/include/VBox
- Timestamp:
- Jan 14, 2016 2:48:08 PM (9 years ago)
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmaudioifs.h
r59276 r59348 539 539 540 540 /** 541 * Initializes the NULL audio driver as a fallback in case no host backend is available.542 *543 * @returns VBox status code.544 * @param pInterface Pointer to the interface structure containing the called function pointer.545 */546 DECLR3CALLBACKMEMBER(int, pfnInitNull, (PPDMIAUDIOCONNECTOR pInterface));547 548 /**549 541 * Enables a specific guest output stream and starts the audio device. 550 542 * -
trunk/include/VBox/vmm/pdmdev.h
r58116 r59348 4 4 5 5 /* 6 * Copyright (C) 2006-201 5Oracle Corporation6 * Copyright (C) 2006-2016 Oracle Corporation 7 7 * 8 8 * This file is part of VirtualBox Open Source Edition (OSE), as … … 178 178 * This is called to let the device attach to a driver for a specified LUN 179 179 * at runtime. This is not called during VM construction, the device 180 * constructor ha veto attach to all the available drivers.180 * constructor has to attach to all the available drivers. 181 181 * 182 182 * This is like plugging in the keyboard or mouse after turning on the PC. … … 184 184 * @returns VBox status code. 185 185 * @param pDevIns The device instance. 186 * @param iLUN The logical unit which is being detached.186 * @param iLUN The logical unit which is being attached. 187 187 * @param fFlags Flags, combination of the PDM_TACH_FLAGS_* \#defines. 188 188 * … … 197 197 * 198 198 * This is called when a driver is detaching itself from a LUN of the device. 199 * The device should adjust it 's state to reflect this.199 * The device should adjust its state to reflect this. 200 200 * 201 201 * This is like unplugging the network cable to use it for the laptop or … … 3068 3068 3069 3069 /** 3070 * Detaches an attached driver (chain) from the device again. 3071 * 3072 * @returns VBox status code. 3073 * @param pDevIns The device instance. 3074 * @param pDrvIns The driver instance to detach. 3075 * @param fFlags Flags, combination of the PDMDEVATT_FLAGS_* \#defines. 3076 */ 3077 DECLR3CALLBACKMEMBER(int, pfnDriverDetach,(PPDMDEVINS pDevIns, PPDMDRVINS pDrvIns, uint32_t fFlags)); 3078 3079 /** 3070 3080 * Create a queue. 3071 3081 * … … 3672 3682 3673 3683 /** Current PDMDEVHLPR3 version number. */ 3674 #define PDM_DEVHLPR3_VERSION PDM_VERSION_MAKE(0xffe7, 1 4, 1)3684 #define PDM_DEVHLPR3_VERSION PDM_VERSION_MAKE(0xffe7, 15, 1) 3675 3685 3676 3686 … … 4938 4948 4939 4949 /** 4950 * @copydoc PDMDEVHLPR3::pfnDriverDetach 4951 */ 4952 DECLINLINE(int) PDMDevHlpDriverDetach(PPDMDEVINS pDevIns, PPDMDRVINS pDrvIns, uint32_t fFlags) 4953 { 4954 return pDevIns->pHlpR3->pfnDriverDetach(pDevIns, pDrvIns, fFlags); 4955 } 4956 4957 /** 4940 4958 * @copydoc PDMDEVHLPR3::pfnQueueCreate 4941 4959 */
Note:
See TracChangeset
for help on using the changeset viewer.