Changeset 70553 in vbox for trunk/src/VBox
- Timestamp:
- Jan 12, 2018 12:15:36 PM (7 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/DrvAudioVRDE.h
r70535 r70553 57 57 static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags); 58 58 static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns); 59 static DECLCALLBACK(int) drvAttach(PPDMDRVINS pDrvIns, uint32_t fFlags); 60 static DECLCALLBACK(void) drvDetach(PPDMDRVINS pDrvIns, uint32_t fFlags); 59 61 60 62 private: -
trunk/src/VBox/Main/src-client/DrvAudioVRDE.cpp
r70535 r70553 754 754 pThis->pAudioVRDE = NULL; 755 755 } 756 } 757 758 /** 759 * @interface_method_impl{PDMDRVREG,pfnAttach} 760 */ 761 /* static */ 762 DECLCALLBACK(int) AudioVRDE::drvAttach(PPDMDRVINS pDrvIns, uint32_t fFlags) 763 { 764 RT_NOREF(pDrvIns, fFlags); 765 766 LogFlowFuncEnter(); 767 768 return VINF_SUCCESS; 769 } 770 771 /** 772 * @interface_method_impl{PDMDRVREG,pfnDetach} 773 */ 774 /* static */ 775 DECLCALLBACK(void) AudioVRDE::drvDetach(PPDMDRVINS pDrvIns, uint32_t fFlags) 776 { 777 RT_NOREF(pDrvIns, fFlags); 778 779 LogFlowFuncEnter(); 756 780 } 757 781 … … 796 820 NULL, 797 821 /* pfnAttach */ 798 NULL,822 AudioVRDE::drvAttach, 799 823 /* pfnDetach */ 800 NULL,824 AudioVRDE::drvDetach, 801 825 /* pfnPowerOff */ 802 826 NULL,
Note:
See TracChangeset
for help on using the changeset viewer.