- Timestamp:
- May 14, 2010 11:06:44 AM (15 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/GuestImpl.cpp
r29309 r29460 206 206 207 207 return S_OK; 208 }209 210 STDMETHODIMP Guest::COMGETTER(PageFusionEnabled) (BOOL *enabled)211 {212 return E_NOTIMPL;213 }214 215 STDMETHODIMP Guest::COMSETTER(PageFusionEnabled) (BOOL enabled)216 {217 return E_NOTIMPL;218 208 } 219 209 -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r29405 r29460 8522 8522 <interface 8523 8523 name="IGuest" extends="$unknown" 8524 uuid=" 27211d55-8b11-4f07-9519-b7563ea2dc29"8524 uuid="909a8633-6e99-4d05-a305-dfe29ca1bc1c" 8525 8525 wsmap="managed" 8526 8526 > … … 8585 8585 <attribute name="memoryBalloonSize" type="unsigned long"> 8586 8586 <desc>Guest system memory balloon size in megabytes (transient property).</desc> 8587 </attribute>8588 8589 <attribute name="PageFusionEnabled" type="boolean">8590 <desc>8591 Flag whether VirtualBox allows page fusion for this machine8592 (64 bits host only; transient property).8593 </desc>8594 8587 </attribute> 8595 8588 -
trunk/src/VBox/Main/include/GuestImpl.h
r29309 r29460 80 80 STDMETHOD(COMGETTER(SupportsSeamless)) (BOOL *aSupportsSeamless); 81 81 STDMETHOD(COMGETTER(SupportsGraphics)) (BOOL *aSupportsGraphics); 82 STDMETHOD(COMGETTER(PageFusionEnabled)) (BOOL *enabled);83 STDMETHOD(COMSETTER(PageFusionEnabled)) (BOOL enabled);84 82 STDMETHOD(COMGETTER(MemoryBalloonSize)) (ULONG *aMemoryBalloonSize); 85 83 STDMETHOD(COMSETTER(MemoryBalloonSize)) (ULONG aMemoryBalloonSize);
Note:
See TracChangeset
for help on using the changeset viewer.