Changeset 3911 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jul 27, 2007 8:04:47 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestImpl.h
r3582 r3911 59 59 STDMETHOD(COMGETTER(AdditionsActive)) (BOOL *aAdditionsActive); 60 60 STDMETHOD(COMGETTER(AdditionsVersion)) (BSTR *aAdditionsVersion); 61 STDMETHOD(COMGETTER(S eamlessSupport)) (BOOL *aSeamlessSupport);61 STDMETHOD(COMGETTER(SupportsSeamless)) (BOOL *aSupportsSeamless); 62 62 63 63 // IGuest methods … … 68 68 void setAdditionsVersion (Bstr aVersion); 69 69 70 void setS eamlessSupport(BOOL aSeamlessSupport);70 void setSupportsSeamless (BOOL aSupportsSeamless); 71 71 72 72 // for VirtualBoxSupportErrorInfoImpl … … 77 77 struct Data 78 78 { 79 Data() : mAdditionsActive (FALSE), mS eamlessSupport(FALSE) {}79 Data() : mAdditionsActive (FALSE), mSupportsSeamless (FALSE) {} 80 80 81 81 Bstr mOSTypeId; 82 82 BOOL mAdditionsActive; 83 83 Bstr mAdditionsVersion; 84 BOOL mS eamlessSupport;84 BOOL mSupportsSeamless; 85 85 }; 86 86
Note:
See TracChangeset
for help on using the changeset viewer.