Changeset 94578 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Apr 12, 2022 8:28:43 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/SystemPropertiesImpl.cpp
r93513 r94578 2257 2257 } 2258 2258 2259 HRESULT SystemProperties::getVBoxUpdateCount(ULONG * VBoxUpdateCount)2259 HRESULT SystemProperties::getVBoxUpdateCount(ULONG *aVBoxUpdateCount) 2260 2260 { 2261 2261 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 2262 2262 2263 * VBoxUpdateCount = m->uVBoxUpdateCount;2264 2265 return S_OK; 2266 } 2267 2268 HRESULT SystemProperties::setVBoxUpdateCount(ULONG VBoxUpdateCount)2263 *aVBoxUpdateCount = m->uVBoxUpdateCount; 2264 2265 return S_OK; 2266 } 2267 2268 HRESULT SystemProperties::setVBoxUpdateCount(ULONG aVBoxUpdateCount) 2269 2269 { 2270 2270 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 2271 m->uVBoxUpdateCount = VBoxUpdateCount;2271 m->uVBoxUpdateCount = aVBoxUpdateCount; 2272 2272 alock.release(); 2273 2273
Note:
See TracChangeset
for help on using the changeset viewer.