Changeset 20206 in vbox
- Timestamp:
- Jun 3, 2009 7:09:35 AM (16 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/HostImpl.cpp
r20160 r20206 1015 1015 * extended error info to indicate that USB is simply not available 1016 1016 * (w/o treating it as a failure), for example, as in OSE. */ 1017 NOREF(aUSBDevices); 1018 NOREF(aUSBDevicesSize); 1017 1019 ReturnComNotImplemented(); 1018 1020 #endif … … 1038 1040 * extended error info to indicate that USB is simply not available 1039 1041 * (w/o treating it as a failure), for example, as in OSE. */ 1042 NOREF(aUSBDeviceFilters); 1043 NOREF(aUSBDeviceFiltersSize); 1040 1044 ReturnComNotImplemented(); 1041 1045 #endif … … 1335 1339 * extended error info to indicate that USB is simply not available 1336 1340 * (w/o treating it as a failure), for example, as in OSE. */ 1341 NOREF(aName); 1342 NOREF(aFilter); 1337 1343 ReturnComNotImplemented(); 1338 1344 #endif … … 1382 1388 * extended error info to indicate that USB is simply not available 1383 1389 * (w/o treating it as a failure), for example, as in OSE. */ 1390 NOREF(aPosition); 1391 NOREF(aFilter); 1384 1392 ReturnComNotImplemented(); 1385 1393 #endif … … 1436 1444 * extended error info to indicate that USB is simply not available 1437 1445 * (w/o treating it as a failure), for example, as in OSE. */ 1446 NOREF(aPosition); 1447 NOREF(aFilter); 1438 1448 ReturnComNotImplemented(); 1439 1449 #endif … … 2499 2509 2500 2510 #else /* !VBOX_WITH_USB */ 2511 NOREF(aAddress); 2512 NOREF(aDevice); 2501 2513 return E_NOTIMPL; 2502 2514 #endif /* !VBOX_WITH_USB */ … … 2531 2543 2532 2544 #else /* !VBOX_WITH_USB */ 2545 NOREF(aId); 2546 NOREF(aDevice); 2533 2547 return E_NOTIMPL; 2534 2548 #endif /* !VBOX_WITH_USB */ -
trunk/src/VBox/Main/MachineImpl.cpp
r19610 r20206 1469 1469 return S_OK; 1470 1470 #else 1471 NOREF(vrdpServer); 1471 1472 ReturnComNotImplemented(); 1472 1473 #endif … … 1535 1536 * extended error info to indicate that USB is simply not available 1536 1537 * (w/o treting it as a failure), for example, as in OSE */ 1538 NOREF(aUSBController); 1537 1539 ReturnComNotImplemented(); 1538 1540 #endif … … 8503 8505 8504 8506 MachineState_T lastState = mData->mMachineState; 8507 NOREF(lastState); 8505 8508 8506 8509 if (aReason == Uninit::Abnormal) … … 8740 8743 *aMatched = mUSBController->hasMatchingFilter (aUSBDevice, aMaskedIfs); 8741 8744 #else 8745 NOREF(aUSBDevice); 8746 NOREF(aMaskedIfs); 8742 8747 *aMatched = FALSE; 8743 8748 #endif … … 8765 8770 return service->captureDeviceForVM (this, Guid(aId)); 8766 8771 #else 8772 NOREF(aId); 8767 8773 return E_NOTIMPL; 8768 8774 #endif … … 8784 8790 return service->detachDeviceFromVM (this, Guid(aId), !!aDone); 8785 8791 #else 8792 NOREF(aId); 8793 NOREF(aDone); 8786 8794 return E_NOTIMPL; 8787 8795 #endif … … 8842 8850 return service->detachAllDevicesFromVM (this, !!aDone, false /* aAbnormal */); 8843 8851 #else 8852 NOREF(aDone); 8844 8853 return S_OK; 8845 8854 #endif … … 9954 9963 default: break; 9955 9964 } 9965 #else 9966 NOREF(aDevice); 9967 NOREF(aMaskedIfs); 9956 9968 #endif 9957 9969 return false; -
trunk/src/VBox/Main/USBControllerImpl.cpp
r17394 r20206 375 375 return S_OK; 376 376 #else 377 NOREF(aDevicesFilters); 378 NOREF(aDevicesFiltersSize); 377 379 ReturnComNotImplemented(); 378 380 #endif … … 408 410 return S_OK; 409 411 #else 412 NOREF(aName); 413 NOREF(aFilter); 410 414 ReturnComNotImplemented(); 411 415 #endif … … 468 472 #else /* VBOX_WITH_USB */ 469 473 474 NOREF(aPosition); 475 NOREF(aFilter); 470 476 ReturnComNotImplemented(); 471 477 … … 533 539 #else /* VBOX_WITH_USB */ 534 540 541 NOREF(aPosition); 542 NOREF(aFilter); 535 543 ReturnComNotImplemented(); 536 544 -
trunk/src/VBox/Main/VFSExplorerImpl.cpp
r20081 r20206 253 253 switch(aType) 254 254 { 255 default: 255 256 case RTDIRENTRYTYPE_UNKNOWN: t = VFSFileType_Unknown; break; 256 257 case RTDIRENTRYTYPE_FIFO: t = VFSFileType_Fifo; break;
Note:
See TracChangeset
for help on using the changeset viewer.