android: Update app-specific/MIME type icons
[LibreOffice.git] / scp2 / source / spsupp / module_spsupp.scp
blobba1ec46020286eb722c2bbda91e1738d502c06ac
1 /*
2  * This file is part of the LibreOffice project.
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  */
9 #include "macros.inc"
11 #include "AutoInstall/spsuppfiles"
13 #ifdef WNT
15 Module gid_Module_Optional_SharePointSupport
16     ParentID = gid_Module_Optional;
17     Name = "gid_Module_Optional_SharePointSupport";
18     Description = "gid_Module_Optional_SharePointSupport";
19     Sortkey = "1300";
20     Default = YES;
21     Styles = (HIDDEN_ROOT);
22     Files = (auto_spsuppfiles_ALL);
23 End
26  * This is a feature with a single registry item, disabled by default, that controls custom action
27  * registering SharePoint.OpenDocuments class, which replaces registration of that class from MSO.
28  * It is disabled to allow co-existing with MS Office. To install, a transform must be used that
29  * would set its level to a non-0 value below INSTALLLEVEL, or a command line like
30  *
31  *     msiexec.exe /i path-to-msi ADDLOCAL=gm_SharePointSupport_SubstMSO
32  */
33 Module gid_Module_SharePointSupport_SubstMSO
34     ParentID = gid_Module_Optional_SharePointSupport;
35     Name = "gid_Module_SharePointSupport_SubstMSO";
36     Description = "Registration of SharePoint.OpenDocuments class";
37     Sortkey = "1305";
38     Default = NO;
39     Independent = YES;
40     Styles = (HIDDEN_ROOT);
41 End
44  * Create a component for the feature, with key path in registry, to track feature installed state
45  */
46 RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_SharePointSupport_SubstMSO_Registered
47     ModuleID = gid_Module_SharePointSupport_SubstMSO;
48     ParentID = PREDEFINED_HKEY_LOCAL_MACHINE;
49     Subkey = "Software\%MANUFACTURER\%PRODUCTNAME\%PRODUCTVERSION\SharePointSupport\SubstMSO";
50     Name = "Registered";
51     Value = "1";
52 End
54 #endif