Changeset 8425 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Apr 28, 2008 3:03:37 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 30274
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestImpl.h
r8323 r8425 61 61 STDMETHOD(COMGETTER(AdditionsActive)) (BOOL *aAdditionsActive); 62 62 STDMETHOD(COMGETTER(AdditionsVersion)) (BSTR *aAdditionsVersion); 63 STDMETHOD(COMGETTER(MaxGuestWidth)) (ULONG *aMaxWidth);64 STDMETHOD(COMGETTER(MaxGuestHeight)) (ULONG *aMaxHeight);65 63 STDMETHOD(COMGETTER(SupportsSeamless)) (BOOL *aSupportsSeamless); 66 64 STDMETHOD(COMGETTER(SupportsGraphics)) (BOOL *aSupportsGraphics); … … 78 76 void setAdditionsVersion (Bstr aVersion); 79 77 80 void setMaxGuestResolution (ULONG aMaxWidth, ULONG aMaxHeight);81 82 78 void setSupportsSeamless (BOOL aSupportsSeamless); 83 79 … … 93 89 struct Data 94 90 { 95 Data() : mAdditionsActive (FALSE), mMaxWidth (0), 96 mMaxHeight(0), mSupportsSeamless (FALSE), 91 Data() : mAdditionsActive (FALSE), mSupportsSeamless (FALSE), 97 92 /* Windows and OS/2 guests take this for granted */ 98 93 mSupportsGraphics (TRUE) {} … … 101 96 BOOL mAdditionsActive; 102 97 Bstr mAdditionsVersion; 103 /** The maximum width supported by the guest - zero means no maximum */104 ULONG mMaxWidth;105 /** The maximum height supported by the guest - zero means no maximum */106 ULONG mMaxHeight;107 98 BOOL mSupportsSeamless; 108 99 BOOL mSupportsGraphics;
Note:
See TracChangeset
for help on using the changeset viewer.