6c7659b584
Change-Id: Ib48a12e902f2311c295b2007f08f44dee28f431d Reviewed-on: https://gerrit.libreoffice.org/3499 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
121 lines
5.2 KiB
C++
121 lines
5.2 KiB
C++
/* -*- 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/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
#ifndef _CPPUHELPER_IMPLEMENTATIONENTRY_HXX_
|
|
#define _CPPUHELPER_IMPLEMENTATIONENTRY_HXX_
|
|
|
|
#include <cppuhelper/factory.hxx>
|
|
#include "cppuhelperdllapi.h"
|
|
|
|
// MinGW wants it the one way around while MSVC wants it the other (cf.
|
|
// <sourceforge.net/support/tracker.php?aid=3514133> "Syntactic __cdecl
|
|
// incompatibility with MSVC"; and everywhere else, SAL_CALL is empty, so
|
|
// doesn't matter):
|
|
#if defined __GNUC__
|
|
#define MY_FN_PTR(name) SAL_CALL (* name)
|
|
#else
|
|
#define MY_FN_PTR(name) (SAL_CALL * name)
|
|
#endif
|
|
|
|
namespace cppu
|
|
{
|
|
/** One struct instance represents all data necessary for registering one service implementation.
|
|
|
|
*/
|
|
struct ImplementationEntry
|
|
{
|
|
/** Function that creates an instance of the implementation
|
|
*/
|
|
ComponentFactoryFunc create;
|
|
|
|
/** Function that returns the implementation-name of the implementation
|
|
(same as XServiceInfo.getImplementationName() ).
|
|
*/
|
|
rtl::OUString MY_FN_PTR( getImplementationName )();
|
|
|
|
/** Function that returns all supported servicenames of the implementation
|
|
( same as XServiceInfo.getSupportedServiceNames() ).
|
|
*/
|
|
com::sun::star::uno::Sequence< rtl::OUString > MY_FN_PTR( getSupportedServiceNames ) ();
|
|
|
|
/** Function that creates a SingleComponentFactory.
|
|
|
|
The pModCount parameter is a backwards-compatibility remainder of a
|
|
removed library unloading feature; always set to null.
|
|
*/
|
|
::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleComponentFactory >
|
|
MY_FN_PTR( createFactory )(
|
|
ComponentFactoryFunc fptr,
|
|
::rtl::OUString const & rImplementationName,
|
|
::com::sun::star::uno::Sequence< ::rtl::OUString > const & rServiceNames,
|
|
rtl_ModuleCount * pModCount );
|
|
|
|
/** Backwards-compatibility remainder of a removed library unloading
|
|
feature; always set to null.
|
|
*/
|
|
rtl_ModuleCount * moduleCounter;
|
|
|
|
/** Must be set to 0 !
|
|
For future extensions.
|
|
*/
|
|
sal_Int32 nFlags;
|
|
};
|
|
|
|
/** Helper function for implementation of the component_writeInfo()-function.
|
|
|
|
@deprecated component_writeInfo should no longer be used in new components
|
|
|
|
@param pServiceManager The first parameter passed to component_writeInfo()-function
|
|
(This is an instance of the service manager, that creates the factory).
|
|
@param pRegistryKey The second parameter passed to the component_writeInfo()-function.
|
|
This is a reference to the registry key, into which the implementation
|
|
data shall be written to.
|
|
@param entries Each element of the entries-array must contains a function pointer
|
|
table for registering an implementation. The end of the array
|
|
must be marked with a 0 entry in the create-function.
|
|
@return sal_True, if all implementations could be registered, otherwise sal_False.
|
|
*/
|
|
CPPUHELPER_DLLPUBLIC sal_Bool component_writeInfoHelper(
|
|
void *pServiceManager, void *pRegistryKey , const struct ImplementationEntry entries[] );
|
|
|
|
/** Helper function for implementation of the component_getFactory()-function,
|
|
that must be implemented by every shared library component.
|
|
|
|
@param pImplName The implementation-name to be instantiated ( This is the
|
|
first parameter passed to the component_getFactory
|
|
@param pServiceManager The second parameter passed to component_getFactory()-function
|
|
(This is a of the service manager, that creates the factory).
|
|
@param pRegistryKey The third parameter passed to the component_getFactory()-function.
|
|
This is a reference to the registry key, where the implementation
|
|
data has been written to.
|
|
@param entries Each element of the entries-array must contains a function pointer
|
|
table for creating a factor of the implementation. The end of the array
|
|
must be marked with a 0 entry in the create-function.
|
|
@return 0 if the helper failed to instantiate a factory, otherwise an acquired pointer
|
|
to a factory.
|
|
*/
|
|
CPPUHELPER_DLLPUBLIC void *component_getFactoryHelper(
|
|
const sal_Char * pImplName,
|
|
void * pServiceManager,
|
|
void * pRegistryKey,
|
|
const struct ImplementationEntry entries[] );
|
|
|
|
}
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|