Changeset 42084 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jul 10, 2012 10:17:20 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 79025
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 5 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestImpl.h
r40685 r42084 25 25 #include "AdditionsFacilityImpl.h" 26 26 #include "GuestCtrlImplPrivate.h" 27 #include "GuestSessionImpl.h" 27 28 #include "HGCM.h" 28 29 #ifdef VBOX_WITH_GUEST_CONTROL … … 84 85 STDMETHOD(COMGETTER(AdditionsVersion))(BSTR *a_pbstrAdditionsVersion); 85 86 STDMETHOD(COMGETTER(AdditionsRevision))(ULONG *a_puAdditionsRevision); 86 STDMETHOD(COMGETTER(Facilities)) (ComSafeArrayOut(IAdditionsFacility*, aFacilities)); 87 STDMETHOD(COMGETTER(Facilities)) (ComSafeArrayOut(IAdditionsFacility *, aFacilities)); 88 STDMETHOD(COMGETTER(Sessions)) (ComSafeArrayOut(IGuestSession *, aSessions)); 87 89 STDMETHOD(COMGETTER(MemoryBalloonSize)) (ULONG *aMemoryBalloonSize); 88 90 STDMETHOD(COMSETTER(MemoryBalloonSize)) (ULONG aMemoryBalloonSize); … … 131 133 ULONG *aPageTotal, ULONG *aMemAllocTotal, ULONG *aMemFreeTotal, ULONG *aMemBalloonTotal, ULONG *aMemSharedTotal); 132 134 STDMETHOD(UpdateGuestAdditions)(IN_BSTR aSource, ULONG aFlags, IProgress **aProgress); 135 STDMETHOD(OpenSession)(IN_BSTR aUser, IN_BSTR aPassword, IN_BSTR aDomain, IN_BSTR aSessionName, IGuestSession **aGuestSession); 133 136 134 137 // Public methods that are not in IDL (only called internally). … … 294 297 typedef std::map< AdditionsFacilityType_T, ComObjPtr<AdditionsFacility> >::const_iterator FacilityMapIterConst; 295 298 299 typedef std::list <ComObjPtr<GuestSession> > GuestSessions; 300 296 301 struct Data 297 302 { … … 308 313 uint32_t mAdditionsFeatures; 309 314 Bstr mInterfaceVersion; 315 GuestSessions mGuestSessions; 310 316 }; 311 317
Note:
See TracChangeset
for help on using the changeset viewer.