Changeset 56035 in vbox for trunk/src/VBox/Main/include/MachineImpl.h
- Timestamp:
- May 22, 2015 4:03:35 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MachineImpl.h
r55977 r56035 307 307 typedef std::map<Utf8Str, GuestProperty> GuestPropertyMap; 308 308 GuestPropertyMap mGuestProperties; 309 Utf8Str mGuestPropertyNotificationPatterns;310 309 311 310 FirmwareType_T mFirmwareType; … … 591 590 void i_releaseStateDependency(); 592 591 592 HRESULT i_getStorageControllerByName(const Utf8Str &aName, 593 ComObjPtr<StorageController> &aStorageController, 594 bool aSetError = false); 595 596 HRESULT i_getUSBControllerByName(const Utf8Str &aName, 597 ComObjPtr<USBController> &aUSBController, 598 bool aSetError = false); 599 593 600 HRESULT i_getBandwidthGroup(const Utf8Str &strBandwidthGroup, 594 601 ComObjPtr<BandwidthGroup> &pBandwidthGroup, … … 643 650 bool aSetError = false); 644 651 645 HRESULT i_getStorageControllerByName(const Utf8Str &aName,646 ComObjPtr<StorageController> &aStorageController,647 bool aSetError = false);648 649 652 HRESULT i_getMediumAttachmentsOfController(const Utf8Str &aName, 650 653 MediaData::AttachmentList &aAttachments); 651 652 HRESULT i_getUSBControllerByName(const Utf8Str &aName,653 ComObjPtr<USBController> &aUSBController,654 bool aSetError = false);655 654 656 655 ULONG i_getUSBControllerCountByType(USBControllerType_T enmType); … … 943 942 HRESULT getDnDMode(DnDMode_T *aDnDMode); 944 943 HRESULT setDnDMode(DnDMode_T aDnDMode); 945 HRESULT getGuestPropertyNotificationPatterns(com::Utf8Str &aGuestPropertyNotificationPatterns);946 HRESULT setGuestPropertyNotificationPatterns(const com::Utf8Str &aGuestPropertyNotificationPatterns);947 944 HRESULT getTeleporterEnabled(BOOL *aTeleporterEnabled); 948 945 HRESULT setTeleporterEnabled(BOOL aTeleporterEnabled); … … 1069 1066 HRESULT getStorageControllerByName(const com::Utf8Str &aName, 1070 1067 ComPtr<IStorageController> &aStorageController); 1071 HRESULT getStorageControllerByInstance(ULONG aInstance, 1068 HRESULT getStorageControllerByInstance(StorageBus_T aConnectionType, 1069 ULONG aInstance, 1072 1070 ComPtr<IStorageController> &aStorageController); 1073 1071 HRESULT removeStorageController(const com::Utf8Str &aName); … … 1233 1231 const com::Utf8Str &aValue, 1234 1232 LONG64 aTimestamp, 1235 const com::Utf8Str &aFlags, 1236 BOOL *aNotify); 1233 const com::Utf8Str &aFlags); 1237 1234 HRESULT lockMedia(); 1238 1235 HRESULT unlockMedia(); … … 1382 1379 const com::Utf8Str &aValue, 1383 1380 LONG64 aTimestamp, 1384 const com::Utf8Str &aFlags, 1385 BOOL *aNotify); 1381 const com::Utf8Str &aFlags); 1386 1382 HRESULT lockMedia(); 1387 1383 HRESULT unlockMedia();
Note:
See TracChangeset
for help on using the changeset viewer.