xref: /AOO41X/main/fpicker/source/office/fps_office.cxx (revision b557fc96600fce3029f73c89748b6c08fd00b34d)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 
25 // MARKER(update_precomp.py): autogen include statement, do not remove
26 #include "precompiled_fpicker.hxx"
27 #include "sal/types.h"
28 
29 #ifndef _CPPUHELPER_IMPLEMENTATIONENTRY_HXX_
30 #include "cppuhelper/implementationentry.hxx"
31 #endif
32 
33 #include "OfficeFilePicker.hxx"
34 #include "OfficeFolderPicker.hxx"
35 
36 static cppu::ImplementationEntry g_entries[] =
37 {
38     {
39         SvtFilePicker::impl_createInstance,
40         SvtFilePicker::impl_getStaticImplementationName,
41         SvtFilePicker::impl_getStaticSupportedServiceNames,
42         cppu::createSingleComponentFactory, 0, 0
43     },
44     {
45         SvtFolderPicker::impl_createInstance,
46         SvtFolderPicker::impl_getStaticImplementationName,
47         SvtFolderPicker::impl_getStaticSupportedServiceNames,
48         cppu::createSingleComponentFactory, 0, 0
49     },
50     { 0, 0, 0, 0, 0, 0 }
51 };
52 
53 extern "C"
54 {
55 SAL_DLLPUBLIC_EXPORT void SAL_CALL
component_getImplementationEnvironment(const sal_Char ** ppEnvTypeName,uno_Environment **)56 component_getImplementationEnvironment(
57     const sal_Char ** ppEnvTypeName, uno_Environment ** /* ppEnv */)
58 {
59     *ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME;
60 }
61 
component_getFactory(const sal_Char * pImplementationName,void * pServiceManager,void * pRegistryKey)62 SAL_DLLPUBLIC_EXPORT void * SAL_CALL component_getFactory(
63     const sal_Char * pImplementationName, void * pServiceManager, void * pRegistryKey)
64 {
65     return cppu::component_getFactoryHelper (
66         pImplementationName, pServiceManager, pRegistryKey, g_entries);
67 }
68 
69 } // extern "C"
70