Changeset 34893 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Dec 9, 2010 2:44:38 PM (14 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ExtPackManagerImpl.h
r34808 r34893 59 59 STDMETHOD(COMGETTER(VRDEModule))(BSTR *a_pbstrVrdeModule); 60 60 STDMETHOD(COMGETTER(PlugIns))(ComSafeArrayOut(IExtPackPlugIn *, a_paPlugIns)); 61 STDMETHOD(COMGETTER(License))(BSTR *a_pbstrHtmlLicense);62 STDMETHOD(COMGETTER(ShowLicense))(BOOL *a_pfShowIt);63 61 STDMETHOD(COMGETTER(Usable))(BOOL *a_pfUsable); 64 62 STDMETHOD(COMGETTER(WhyUnusable))(BSTR *a_pbstrWhy); 63 STDMETHOD(COMGETTER(ShowLicense))(BOOL *a_pfShowIt); 64 STDMETHOD(COMGETTER(License))(BSTR *a_pbstrHtmlLicense); 65 STDMETHOD(QueryLicense)(IN_BSTR a_bstrPreferredLocale, IN_BSTR a_bstrPreferredLanguage, 66 IN_BSTR a_bstrFormat, BSTR *a_pbstrLicense); 65 67 /** @} */ 66 68 … … 122 124 STDMETHOD(COMGETTER(VRDEModule))(BSTR *a_pbstrVrdeModule); 123 125 STDMETHOD(COMGETTER(PlugIns))(ComSafeArrayOut(IExtPackPlugIn *, a_paPlugIns)); 124 STDMETHOD(COMGETTER(License))(BSTR *a_pbstrHtmlLicense);125 STDMETHOD(COMGETTER(ShowLicense))(BOOL *a_pfShowIt);126 126 STDMETHOD(COMGETTER(Usable))(BOOL *a_pfUsable); 127 127 STDMETHOD(COMGETTER(WhyUnusable))(BSTR *a_pbstrWhy); 128 STDMETHOD(COMGETTER(ShowLicense))(BOOL *a_pfShowIt); 129 STDMETHOD(COMGETTER(License))(BSTR *a_pbstrHtmlLicense); 130 STDMETHOD(QueryLicense)(IN_BSTR a_bstrPreferredLocale, IN_BSTR a_bstrPreferredLanguage, 131 IN_BSTR a_bstrFormat, BSTR *a_pbstrLicense); 128 132 /** @} */ 129 133 -
trunk/src/VBox/Main/include/ExtPackUtil.h
r34787 r34893 33 33 * The name of the signature file in an extension pack. */ 34 34 #define VBOX_EXTPACK_SIGNATURE_NAME "ExtPack.signature" 35 /** @name VBOX_EXTPACK_LICENSE_NAME_PREFIX 36 * The name prefix of a license file in an extension pack. There can be 37 * several license files in a pack, the variations being on locale, language 38 * and format (HTML, RTF, plain text). All extension packages shall include 39 * a */ 40 #define VBOX_EXTPACK_LICENSE_NAME_PREFIX "ExtPack.license" 35 41 /** @name VBOX_EXTPACK_SUFFIX 36 42 * The suffix of a extension pack tarball. */ … … 94 100 /** Pointer to an array of plug-in descriptors. */ 95 101 PVBOXEXTPACKPLUGINDESC paPlugIns; 102 /** Whether to show the license prior to installation. */ 103 bool fShowLicense; 96 104 } VBOXEXTPACKDESC; 97 105
Note:
See TracChangeset
for help on using the changeset viewer.