Changeset 2029 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Apr 11, 2007 1:23:03 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/VirtualBoxImpl.h
r953 r2029 141 141 STDMETHOD(OpenVirtualDiskImage) (INPTR BSTR aFilePath, IVirtualDiskImage **aImage); 142 142 STDMETHOD(RegisterHardDisk) (IHardDisk *aHardDisk); 143 STDMETHOD(GetHardDisk) (INPTR GUIDPARAM id, IHardDisk **hardDisk); 143 STDMETHOD(GetHardDisk) (INPTR GUIDPARAM aId, IHardDisk **aHardDisk); 144 STDMETHOD(FindHardDisk) (INPTR BSTR aLocation, IHardDisk **aHardDisk); 144 145 STDMETHOD(FindVirtualDiskImage) (INPTR BSTR aFilePath, IVirtualDiskImage **aImage); 145 146 STDMETHOD(UnregisterHardDisk) (INPTR GUIDPARAM aId, IHardDisk **aHardDisk); … … 229 230 HRESULT getHardDisk (const Guid &aId, ComObjPtr <HardDisk> &aHardDisk) 230 231 { 231 return findHardDisk ( aId, true /* aDoSetError */, &aHardDisk);232 return findHardDisk (&aId, NULL, true /* aDoSetError */, &aHardDisk); 232 233 } 233 234 … … 274 275 ComObjPtr <Machine> *machine = NULL); 275 276 276 HRESULT findHardDisk (const Guid &aId, bool aSetError,277 ComObjPtr <HardDisk> *aHardDisk = NULL);277 HRESULT findHardDisk (const Guid *aId, const BSTR aLocation, 278 bool aSetError, ComObjPtr <HardDisk> *aHardDisk = NULL); 278 279 279 280 HRESULT findVirtualDiskImage (const Guid *aId, const BSTR aFilePathFull,
Note:
See TracChangeset
for help on using the changeset viewer.