Changeset 70553 in vbox for trunk/src/VBox/Main/src-client/DrvAudioVRDE.cpp
- Timestamp:
- Jan 12, 2018 12:15:36 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 120233
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.