Changeset 42538 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Aug 2, 2012 1:28:40 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 79712
- Location:
- trunk/src/VBox/Main/src-server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r42489 r42538 4291 4291 } 4292 4292 4293 STDMETHODIMP Machine::SetNoBandwidthGroupForDevice(IN_BSTR aControllerName, LONG aControllerPort, 4294 LONG aDevice) 4295 { 4296 int rc = S_OK; 4297 LogFlowThisFunc(("aControllerName=\"%ls\" aControllerPort=%d aDevice=%d\n", 4298 aControllerName, aControllerPort, aDevice)); 4299 4300 rc = SetBandwidthGroupForDevice(aControllerName, aControllerPort, aDevice, NULL); 4301 4302 return rc; 4303 } 4304 4293 4305 STDMETHODIMP Machine::SetBandwidthGroupForDevice(IN_BSTR aControllerName, LONG aControllerPort, 4294 4306 LONG aDevice, IBandwidthGroup *aBandwidthGroup) … … 4353 4365 return S_OK; 4354 4366 } 4367 4368 STDMETHODIMP Machine::AttachDeviceWithoutMedium(IN_BSTR aControllerName, 4369 LONG aControllerPort, 4370 LONG aDevice, 4371 DeviceType_T aType) 4372 { 4373 HRESULT rc = S_OK; 4374 4375 LogFlowThisFunc(("aControllerName=\"%ls\" aControllerPort=%d aDevice=%d aType=%d aMedium=%p\n", 4376 aControllerName, aControllerPort, aDevice, aType)); 4377 4378 rc = AttachDevice(aControllerName, aControllerPort, aDevice, aType, NULL); 4379 4380 return rc; 4381 } 4382 4383 4355 4384 4356 4385 STDMETHODIMP Machine::UnmountMedium(IN_BSTR aControllerName, -
trunk/src/VBox/Main/src-server/MediumImpl.cpp
r42208 r42538 2643 2643 2644 2644 return rc; 2645 } 2646 2647 STDMETHODIMP Medium::CloneToBase(IMedium *aTarget, 2648 ULONG aVariant, 2649 IProgress **aProgress) 2650 { 2651 int rc = S_OK; 2652 CheckComArgNotNull(aTarget); 2653 CheckComArgOutPointerValid(aProgress); 2654 rc = CloneTo(aTarget, aVariant, NULL, aProgress); 2655 return rc; 2645 2656 } 2646 2657
Note:
See TracChangeset
for help on using the changeset viewer.