Changeset 63418 in vbox
- Timestamp:
- Aug 13, 2016 4:58:12 PM (8 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r63239 r63418 528 528 HRESULT Console::i_attachRawPCIDevices(PUVM pUVM, BusAssignmentManager *pBusMgr, PCFGMNODE pDevices) 529 529 { 530 # ifndef VBOX_WITH_EXTPACK 531 RT_NOREF(pUVM); 532 # endif 530 533 HRESULT hrc = S_OK; 531 534 PCFGMNODE pInst, pCfg, pLunL0, pLunL1; … … 1886 1889 * introduced by the new distribution model. 1887 1890 */ 1891 # ifdef VBOX_WITH_EXTPACK 1888 1892 static const char *s_pszUsbExtPackName = "Oracle VM VirtualBox Extension Pack"; 1889 # ifdef VBOX_WITH_EXTPACK1890 1893 if (mptrExtPackManager->i_isExtPackUsable(s_pszUsbExtPackName)) 1891 1894 # endif … … 1934 1937 * introduced by the new distribution model. 1935 1938 */ 1939 # ifdef VBOX_WITH_EXTPACK 1936 1940 static const char *s_pszUsbExtPackName = "Oracle VM VirtualBox Extension Pack"; 1937 # ifdef VBOX_WITH_EXTPACK1938 1941 if (mptrExtPackManager->i_isExtPackUsable(s_pszUsbExtPackName)) 1939 1942 # endif -
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r63244 r63418 882 882 return rc; 883 883 } 884 #endif /* #if defined(VBOX_WITH_HGCM) && defined(VBOX_WITH_CROGL) */ 884 #else /* !VBOX_WITH_HGCM || !VBOX_WITH_CROGL */ 885 RT_NOREF(pScreen, pvVRAM); 886 #endif 885 887 return VINF_SUCCESS; 886 888 } … … 3676 3678 3677 3679 return hr; 3678 #else 3680 3681 #else /* !VBOX_WITH_HGCM || !VBOX_WITH_CROGL */ 3682 RT_NOREF(aScreenId, aScaleFactorWMultiplied, aScaleFactorHMultiplied); 3679 3683 AssertMsgFailed(("Attempt to specify OpenGL content scale factor while corresponding functionality is disabled.")); 3680 3684 return E_UNEXPECTED; 3681 #endif /* VBOX_WITH_HGCM &&VBOX_WITH_CROGL */3685 #endif /* !VBOX_WITH_HGCM || !VBOX_WITH_CROGL */ 3682 3686 } 3683 3687 … … 3741 3745 3742 3746 return hr; 3743 #else 3747 3748 #else /* !VBOX_WITH_HGCM || !VBOX_WITH_CROGL */ 3749 RT_NOREF(fUnscaledHiDPI); 3744 3750 AssertMsgFailed(("Attempt to notify OpenGL about HiDPI output scaling policy change while corresponding functionality is disabled.")); 3745 3751 return E_UNEXPECTED; 3746 #endif /* VBOX_WITH_HGCM &&VBOX_WITH_CROGL */3752 #endif /* !VBOX_WITH_HGCM || !VBOX_WITH_CROGL */ 3747 3753 } 3748 3754 -
trunk/src/VBox/Main/src-client/GuestImpl.cpp
r63244 r63418 492 492 { 493 493 #ifndef VBOX_WITH_DRAG_AND_DROP 494 RT_NOREF(aDnDSource); 494 495 ReturnComNotImplemented(); 495 496 #else … … 507 508 { 508 509 #ifndef VBOX_WITH_DRAG_AND_DROP 510 RT_NOREF(aDnDTarget); 509 511 ReturnComNotImplemented(); 510 512 #else -
trunk/src/VBox/Main/src-server/MediumImpl.cpp
r63256 r63418 3567 3567 HRESULT Medium::getEncryptionSettings(com::Utf8Str &aCipher, com::Utf8Str &aPasswordId) 3568 3568 { 3569 #ifndef VBOX_WITH_EXTPACK 3570 RT_NOREF(aCipher, aPasswordId); 3571 #endif 3569 3572 HRESULT rc = S_OK; 3570 3573 … … 9886 9889 HRESULT Medium::i_taskEncryptHandler(Medium::EncryptTask &task) 9887 9890 { 9891 # ifndef VBOX_WITH_EXTPACK 9892 RT_NOREF(task); 9893 # endif 9888 9894 HRESULT rc = S_OK; 9889 9895
Note:
See TracChangeset
for help on using the changeset viewer.