Changeset 29591 in vbox for trunk/src/VBox
- Timestamp:
- May 18, 2010 7:06:38 AM (15 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/GuestImpl.cpp
r29589 r29591 227 227 228 228 return S_OK; 229 } 230 231 STDMETHODIMP Guest::COMSETTER(PageFusionEnabled) (BOOL aPageFusionEnabled) 232 { 233 AutoCaller autoCaller(this); 234 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 235 236 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 237 238 /** todo; API complete, but not implemented */ 239 240 return E_NOTIMPL; 229 241 } 230 242 -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r29589 r29591 8497 8497 <interface 8498 8498 name="IGuest" extends="$unknown" 8499 uuid=" 25efde01-dd0b-43b0-9ceb-e4e6307107ac"8499 uuid="d915dff1-ed38-495a-91f1-ab6c53932468" 8500 8500 wsmap="managed" 8501 8501 > … … 8562 8562 </attribute> 8563 8563 8564 <attribute name="pageFusionEnabled" type="boolean" readonly="yes">8564 <attribute name="pageFusionEnabled" type="boolean"> 8565 8565 <desc>Flag whether page fusion is enabled or not.</desc> 8566 8566 </attribute> -
trunk/src/VBox/Main/include/GuestImpl.h
r29589 r29591 83 83 STDMETHOD(COMSETTER(MemoryBalloonSize)) (ULONG aMemoryBalloonSize); 84 84 STDMETHOD(COMGETTER(PageFusionEnabled)) (BOOL *aPageFusionEnabled); 85 STDMETHOD(COMSETTER(PageFusionEnabled)) (BOOL aPageFusionEnabled); 85 86 STDMETHOD(COMGETTER(StatisticsUpdateInterval)) (ULONG *aUpdateInterval); 86 87 STDMETHOD(COMSETTER(StatisticsUpdateInterval)) (ULONG aUpdateInterval);
Note:
See TracChangeset
for help on using the changeset viewer.