Changeset 66938 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- May 17, 2017 4:09:58 PM (8 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/DHCPServerImpl.h
r61009 r66938 70 70 public: 71 71 72 DECLARE_EMPTY_CTOR_DTOR 72 DECLARE_EMPTY_CTOR_DTOR(DHCPServer) 73 73 74 74 HRESULT FinalConstruct(); … … 76 76 77 77 HRESULT init(VirtualBox *aVirtualBox, 78 IN_BSTRaName);78 const com::Utf8Str &aName); 79 79 HRESULT init(VirtualBox *aVirtualBox, 80 80 const settings::DHCPServer &data); -
trunk/src/VBox/Main/include/GuestOSTypeImpl.h
r66925 r66938 39 39 40 40 // public methods only for internal purposes 41 const Bstr &i_id() const { return mID; }42 const Bstr &i_familyId() const { return mFamilyID; }41 const Utf8Str &i_id() const { return mID; } 42 const Utf8Str &i_familyId() const { return mFamilyID; } 43 43 bool i_is64Bit() const { return !!(mOSHint & VBOXOSHINT_64BIT); } 44 44 bool i_recommendedIOAPIC() const { return !!(mOSHint & VBOXOSHINT_IOAPIC); } … … 85 85 86 86 87 const Bstr mFamilyID;88 const Bstr mFamilyDescription;89 const Bstr mID;90 const Bstr mDescription;87 const Utf8Str mFamilyID; 88 const Utf8Str mFamilyDescription; 89 const Utf8Str mID; 90 const Utf8Str mDescription; 91 91 const VBOXOSTYPE mOSType; 92 92 const uint32_t mOSHint; -
trunk/src/VBox/Main/include/VirtualBoxImpl.h
r65088 r66938 161 161 void i_onHostNameResolutionConfigurationChange(); 162 162 163 int i_natNetworkRefInc( IN_BSTRaNetworkName);164 int i_natNetworkRefDec( IN_BSTRaNetworkName);163 int i_natNetworkRefInc(const Utf8Str &aNetworkName); 164 int i_natNetworkRefDec(const Utf8Str &aNetworkName); 165 165 166 166 ComObjPtr<GuestOSType> i_getUnknownOSType(); … … 199 199 ComObjPtr<Medium> &pMedium); 200 200 201 HRESULT i_findGuestOSType(const Bstr &bstrOSType,202 GuestOSType*& pGuestOSType);201 HRESULT i_findGuestOSType(const Utf8Str &strOSType, 202 ComObjPtr<GuestOSType> &guestOSType); 203 203 204 204 const Guid &i_getGlobalRegistryId() const;
Note:
See TracChangeset
for help on using the changeset viewer.