Changeset 61157 in vbox for trunk/src/VBox/Main/src-client/VBoxDriversRegister.cpp
- Timestamp:
- May 24, 2016 11:47:09 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107442
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/VBoxDriversRegister.cpp
r57358 r61157 6 6 7 7 /* 8 * Copyright (C) 2006-201 5Oracle Corporation8 * Copyright (C) 2006-2016 Oracle Corporation 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 25 25 #include "DisplayImpl.h" 26 26 #include "VMMDev.h" 27 #include "DrvAudioVRDE.h" 27 #ifdef VBOX_WITH_VRDE_AUDIO 28 # include "DrvAudioVRDE.h" 29 #endif 28 30 #include "Nvram.h" 29 31 #include "UsbWebcamInterface.h" … … 68 70 if (RT_FAILURE(rc)) 69 71 return rc; 70 72 #ifdef VBOX_WITH_VRDE_AUDIO 71 73 rc = pCallbacks->pfnRegister(pCallbacks, &AudioVRDE::DrvReg); 72 74 if (RT_FAILURE(rc)) 73 75 return rc; 74 76 #endif 75 77 rc = pCallbacks->pfnRegister(pCallbacks, &Nvram::DrvReg); 76 78 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.