Changeset 29309 in vbox
- Timestamp:
- May 10, 2010 3:44:55 PM (15 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/GuestImpl.cpp
r29299 r29309 208 208 } 209 209 210 STDMETHODIMP Guest::COMGETTER( SharedPagingEnabled) (BOOL *enabled)210 STDMETHODIMP Guest::COMGETTER(PageFusionEnabled) (BOOL *enabled) 211 211 { 212 212 return E_NOTIMPL; 213 213 } 214 214 215 STDMETHODIMP Guest::COMSETTER( SharedPagingEnabled) (BOOL enabled)215 STDMETHODIMP Guest::COMSETTER(PageFusionEnabled) (BOOL enabled) 216 216 { 217 217 return E_NOTIMPL; -
trunk/src/VBox/Main/MachineImpl.cpp
r29225 r29309 1464 1464 } 1465 1465 1466 STDMETHODIMP Machine::COMGETTER( SharedPagingEnabled) (BOOL *enabled)1466 STDMETHODIMP Machine::COMGETTER(PageFusionEnabled) (BOOL *enabled) 1467 1467 { 1468 1468 return E_NOTIMPL; 1469 1469 } 1470 1470 1471 STDMETHODIMP Machine::COMSETTER( SharedPagingEnabled) (BOOL enabled)1471 STDMETHODIMP Machine::COMSETTER(PageFusionEnabled) (BOOL enabled) 1472 1472 { 1473 1473 return E_NOTIMPL; -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r29225 r29309 4215 4215 <interface 4216 4216 name="IMachine" extends="$unknown" 4217 uuid=" ebea94d0-7663-4dea-8052-00946dd63d11"4217 uuid="b5d4457e-888f-46ef-b2db-644616db94fd" 4218 4218 wsmap="managed" 4219 4219 > … … 4420 4420 </attribute> 4421 4421 4422 <attribute name=" SharedPagingEnabled" type="boolean">4422 <attribute name="PageFusionEnabled" type="boolean"> 4423 4423 <desc> 4424 4424 This setting determines whether VirtualBox allows page 4425 sharingfor this machine (64 bits host only).4425 fusion for this machine (64 bits host only). 4426 4426 </desc> 4427 4427 </attribute> … … 8506 8506 <interface 8507 8507 name="IGuest" extends="$unknown" 8508 uuid=" d073545f-9635-489e-b36f-d468a10f8987"8508 uuid="27211d55-8b11-4f07-9519-b7563ea2dc29" 8509 8509 wsmap="managed" 8510 8510 > … … 8571 8571 </attribute> 8572 8572 8573 <attribute name=" SharedPagingEnabled" type="boolean">8574 <desc> 8575 Flag whether VirtualBox allows page sharingfor this machine8573 <attribute name="PageFusionEnabled" type="boolean"> 8574 <desc> 8575 Flag whether VirtualBox allows page fusion for this machine 8576 8576 (64 bits host only; transient property). 8577 8577 </desc> -
trunk/src/VBox/Main/include/GuestImpl.h
r29225 r29309 80 80 STDMETHOD(COMGETTER(SupportsSeamless)) (BOOL *aSupportsSeamless); 81 81 STDMETHOD(COMGETTER(SupportsGraphics)) (BOOL *aSupportsGraphics); 82 STDMETHOD(COMGETTER( SharedPagingEnabled)) (BOOL *enabled);83 STDMETHOD(COMSETTER( SharedPagingEnabled)) (BOOL enabled);82 STDMETHOD(COMGETTER(PageFusionEnabled)) (BOOL *enabled); 83 STDMETHOD(COMSETTER(PageFusionEnabled)) (BOOL enabled); 84 84 STDMETHOD(COMGETTER(MemoryBalloonSize)) (ULONG *aMemoryBalloonSize); 85 85 STDMETHOD(COMSETTER(MemoryBalloonSize)) (ULONG aMemoryBalloonSize); -
trunk/src/VBox/Main/include/MachineImpl.h
r29225 r29309 393 393 STDMETHOD(COMGETTER(MemoryBalloonSize))(ULONG *memoryBalloonSize); 394 394 STDMETHOD(COMSETTER(MemoryBalloonSize))(ULONG memoryBalloonSize); 395 STDMETHOD(COMGETTER( SharedPagingEnabled))(BOOL *enabled);396 STDMETHOD(COMSETTER( SharedPagingEnabled))(BOOL enabled);395 STDMETHOD(COMGETTER(PageFusionEnabled))(BOOL *enabled); 396 STDMETHOD(COMSETTER(PageFusionEnabled))(BOOL enabled); 397 397 STDMETHOD(COMGETTER(VRAMSize))(ULONG *memorySize); 398 398 STDMETHOD(COMSETTER(VRAMSize))(ULONG memorySize);
Note:
See TracChangeset
for help on using the changeset viewer.