2012-09-24 02:38:43 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "osl/detail/android-bootstrap.h"
|
|
|
|
|
|
|
|
extern "C"
|
|
|
|
{
|
2012-10-01 07:52:31 -05:00
|
|
|
extern void * avmedia_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
|
|
|
extern void * fwk_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
|
|
|
extern void * fwl_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
|
|
|
extern void * fwm_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
2012-09-24 02:38:43 -05:00
|
|
|
extern void * hwp_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
2012-10-01 03:01:38 -05:00
|
|
|
extern void * lotuswordpro_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
2012-09-24 02:38:43 -05:00
|
|
|
extern void * sc_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
|
|
|
extern void * scd_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
|
|
|
extern void * scfilt_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
2012-10-01 03:01:38 -05:00
|
|
|
extern void * sd_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
|
|
|
extern void * sdd_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
|
|
|
extern void * svgfilter_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
2012-09-24 02:38:43 -05:00
|
|
|
extern void * sw_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
|
|
|
extern void * swd_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
2012-10-01 03:01:38 -05:00
|
|
|
extern void * t602filter_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
2012-10-01 07:52:31 -05:00
|
|
|
extern void * textfd_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
2012-09-24 02:38:43 -05:00
|
|
|
extern void * unoxml_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
2012-09-24 08:35:50 -05:00
|
|
|
extern void * wpftdraw_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
|
|
|
extern void * wpftwriter_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
2012-09-24 02:38:43 -05:00
|
|
|
extern void * xmlfd_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
|
|
|
extern void * xo_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
|
|
|
extern void * xof_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey );
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C"
|
|
|
|
__attribute__ ((visibility("default")))
|
|
|
|
const lib_to_component_mapping *
|
|
|
|
lo_get_libmap(void)
|
|
|
|
{
|
|
|
|
static lib_to_component_mapping map[] = {
|
2012-10-01 07:52:31 -05:00
|
|
|
{ "libavmedialo.a", avmedia_component_getFactory },
|
|
|
|
{ "libfwklo.a", fwk_component_getFactory },
|
|
|
|
{ "libfwllo.a", fwl_component_getFactory },
|
|
|
|
{ "libfwmlo.a", fwm_component_getFactory },
|
2012-09-24 02:38:43 -05:00
|
|
|
{ "libhwplo.a", hwp_component_getFactory },
|
2012-10-01 03:01:38 -05:00
|
|
|
{ "liblwpftlo.a", lotuswordpro_component_getFactory },
|
2012-09-24 02:38:43 -05:00
|
|
|
{ "libscdlo.a", scd_component_getFactory },
|
|
|
|
{ "libscfiltlo.a", scfilt_component_getFactory },
|
|
|
|
{ "libsclo.a", sc_component_getFactory },
|
2012-10-01 03:01:38 -05:00
|
|
|
{ "libsddlo.a", sdd_component_getFactory },
|
|
|
|
{ "libsdlo.a", sd_component_getFactory },
|
|
|
|
{ "libsvgfilterlo.a", svgfilter_component_getFactory },
|
2012-09-24 02:38:43 -05:00
|
|
|
{ "libswdlo.a", swd_component_getFactory },
|
|
|
|
{ "libswlo.a", sw_component_getFactory },
|
2012-10-01 03:01:38 -05:00
|
|
|
{ "libt602filterlo.a", t602filter_component_getFactory },
|
2012-10-01 07:52:31 -05:00
|
|
|
{ "libtextfdlo.a", textfd_component_getFactory },
|
2012-09-24 02:38:43 -05:00
|
|
|
{ "libunoxmllo.a", unoxml_component_getFactory },
|
2012-09-24 08:35:50 -05:00
|
|
|
{ "libwpftdrawlo.a", wpftdraw_component_getFactory },
|
|
|
|
{ "libwpftwriterlo.a", wpftwriter_component_getFactory },
|
2012-09-24 02:38:43 -05:00
|
|
|
{ "libxmlfdlo.a", xmlfd_component_getFactory },
|
|
|
|
{ "libxoflo.a", xof_component_getFactory },
|
|
|
|
{ "libxolo.a", xo_component_getFactory },
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|