Changeset 3582 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jul 12, 2007 2:05:10 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestImpl.h
r2981 r3582 59 59 STDMETHOD(COMGETTER(AdditionsActive)) (BOOL *aAdditionsActive); 60 60 STDMETHOD(COMGETTER(AdditionsVersion)) (BSTR *aAdditionsVersion); 61 STDMETHOD(COMGETTER(SeamlessSupport)) (BOOL *aSeamlessSupport); 61 62 62 63 // IGuest methods … … 67 68 void setAdditionsVersion (Bstr aVersion); 68 69 70 void setSeamlessSupport(BOOL aSeamlessSupport); 71 69 72 // for VirtualBoxSupportErrorInfoImpl 70 73 static const wchar_t *getComponentName() { return L"Guest"; } … … 74 77 struct Data 75 78 { 76 Data() : mAdditionsActive (FALSE) {}79 Data() : mAdditionsActive (FALSE), mSeamlessSupport (FALSE) {} 77 80 78 81 Bstr mOSTypeId; 79 82 BOOL mAdditionsActive; 80 83 Bstr mAdditionsVersion; 84 BOOL mSeamlessSupport; 81 85 }; 82 86
Note:
See TracChangeset
for help on using the changeset viewer.