2012-09-24 10:38:43 +03: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"
|
|
|
|
__attribute__ ((visibility("default")))
|
2013-12-19 08:48:56 +01:00
|
|
|
const lib_to_factory_mapping *
|
|
|
|
lo_get_factory_map(void)
|
2012-09-24 10:38:43 +03:00
|
|
|
{
|
2013-12-19 08:48:56 +01:00
|
|
|
static lib_to_factory_mapping map[] = {
|
2013-12-19 10:39:46 +01:00
|
|
|
LO_CORE_FACTORY_MAP
|
2013-12-19 11:06:36 +01:00
|
|
|
LO_CALC_CORE_FACTORY_MAP
|
2013-12-19 10:39:46 +01:00
|
|
|
LO_WRITER_FACTORY_MAP
|
2012-10-15 13:45:42 +03:00
|
|
|
{ "libanimcorelo.a", animcore_component_getFactory },
|
2012-10-01 15:52:31 +03:00
|
|
|
{ "libavmedialo.a", avmedia_component_getFactory },
|
2012-10-15 13:45:42 +03:00
|
|
|
{ "libdbalo.a", dba_component_getFactory },
|
2012-10-02 13:35:39 +03:00
|
|
|
{ "libdbaxmllo.a", dbaxml_component_getFactory },
|
2012-10-09 12:27:22 +03:00
|
|
|
{ "libfrmlo.a", frm_component_getFactory },
|
2012-10-01 15:52:31 +03:00
|
|
|
{ "libfwklo.a", fwk_component_getFactory },
|
|
|
|
{ "libfwmlo.a", fwm_component_getFactory },
|
2012-09-24 10:38:43 +03:00
|
|
|
{ "libhwplo.a", hwp_component_getFactory },
|
2013-02-21 21:34:30 +02:00
|
|
|
{ "libprotocolhandlerlo.a", protocolhandler_component_getFactory },
|
2012-10-09 12:27:22 +03:00
|
|
|
{ "libsblo.a", sb_component_getFactory },
|
2012-10-01 11:01:38 +03:00
|
|
|
{ "libsddlo.a", sdd_component_getFactory },
|
|
|
|
{ "libsdlo.a", sd_component_getFactory },
|
2012-10-02 13:35:39 +03:00
|
|
|
{ "libsmdlo.a", smd_component_getFactory },
|
|
|
|
{ "libsmlo.a", sm_component_getFactory },
|
2012-10-01 11:01:38 +03:00
|
|
|
{ "libsvgfilterlo.a", svgfilter_component_getFactory },
|
|
|
|
{ "libt602filterlo.a", t602filter_component_getFactory },
|
2012-10-01 15:52:31 +03:00
|
|
|
{ "libtextfdlo.a", textfd_component_getFactory },
|
2012-09-24 16:35:50 +03:00
|
|
|
{ "libwpftdrawlo.a", wpftdraw_component_getFactory },
|
|
|
|
{ "libwpftwriterlo.a", wpftwriter_component_getFactory },
|
2012-09-24 10:38:43 +03:00
|
|
|
{ "libxmlfdlo.a", xmlfd_component_getFactory },
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
2013-12-16 17:26:34 +01:00
|
|
|
extern "C"
|
|
|
|
__attribute__ ((visibility("default")))
|
2013-12-19 08:48:56 +01:00
|
|
|
const lib_to_constructor_mapping *
|
|
|
|
lo_get_constructor_map(void)
|
2013-12-16 17:26:34 +01:00
|
|
|
{
|
2013-12-19 08:48:56 +01:00
|
|
|
static lib_to_constructor_mapping map[] = {
|
|
|
|
NON_APP_SPECIFIC_CONSTRUCTOR_MAP
|
2013-12-16 17:26:34 +01:00
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
2012-09-24 10:38:43 +03:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|