Changeset 85730 in vbox for trunk/src/VBox
- Timestamp:
- Aug 12, 2020 7:57:59 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139877
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/HostUpdateImpl.h
r85729 r85730 41 41 /** @name wrapped IHostUpdate attributes and methods 42 42 * @ */ 43 HRESULT getUpdate(ComPtr<IHostUpdate> &aUpdate); 44 HRESULT updateCheck(UpdateCheckType_T aCheckType, ComPtr<IProgress> &aProgress); 45 HRESULT getUpdateResponse(BOOL *aUpdateNeeded); 46 HRESULT getUpdateVersion(com::Utf8Str &aUpdateVersion); 47 HRESULT getUpdateURL(com::Utf8Str &aUpdateURL); 48 HRESULT getUpdateCheckNeeded(BOOL *aUpdateCheckNeeded); 43 HRESULT updateCheck(UpdateCheckType_T aCheckType, ComPtr<IProgress> &aProgress) RT_OVERRIDE; 44 HRESULT getUpdateResponse(BOOL *aUpdateNeeded) RT_OVERRIDE; 45 HRESULT getUpdateVersion(com::Utf8Str &aUpdateVersion) RT_OVERRIDE; 46 HRESULT getUpdateURL(com::Utf8Str &aUpdateURL) RT_OVERRIDE; 47 HRESULT getUpdateCheckNeeded(BOOL *aUpdateCheckNeeded) RT_OVERRIDE; 49 48 /** @} */ 50 49 … … 57 56 * @{ */ 58 57 VirtualBox * const mVirtualBox; 59 ComPtr<IHostUpdate> m_pHostUpdate; 60 BOOL m_updateNeeded; 58 BOOL m_updateNeeded; 61 59 Utf8Str m_updateVersion; 62 60 Utf8Str m_updateURL; -
trunk/src/VBox/Main/src-server/HostUpdateImpl.cpp
r85729 r85730 492 492 } 493 493 494 HRESULT HostUpdate::getUpdate(ComPtr<IHostUpdate> &aUpdate)495 {496 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);497 aUpdate = m_pHostUpdate;498 return S_OK;499 }500 501 494 HRESULT HostUpdate::updateCheck(UpdateCheckType_T aCheckType, 502 495 ComPtr<IProgress> &aProgress)
Note:
See TracChangeset
for help on using the changeset viewer.