62be20899d
Change-Id: I59161a08eee0406ac71b1212a0a8697edf27911f Reviewed-on: https://gerrit.libreoffice.org/3897 Reviewed-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr> Tested-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr>
64 lines
1.6 KiB
C++
64 lines
1.6 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/.
|
|
*/
|
|
|
|
#ifdef LINUX
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include <osl/module.h>
|
|
#include <sal/types.h>
|
|
#include <liblibreoffice.hxx>
|
|
|
|
#include <dlfcn.h>
|
|
#ifdef AIX
|
|
# include <sys/ldr.h>
|
|
#endif
|
|
|
|
#define TARGET_LIB SAL_MODULENAME( "sofficeapp" )
|
|
|
|
extern "C" {
|
|
typedef LibLibreOffice *(HookFunction)(void);
|
|
};
|
|
|
|
SAL_DLLPUBLIC_EXPORT LibLibreOffice *lo_init( const char *install_path )
|
|
{
|
|
if( !install_path )
|
|
return NULL;
|
|
char* imp_lib = (char *) malloc( strlen (install_path) + sizeof( TARGET_LIB ) + 2 );
|
|
if(!imp_lib)
|
|
{
|
|
fprintf( stderr, "failed to open library : not enough memory\n");
|
|
return NULL;
|
|
}
|
|
strcpy( imp_lib, install_path );
|
|
strcat( imp_lib, "/" );
|
|
strcat( imp_lib, TARGET_LIB );
|
|
void *dlhandle = dlopen( imp_lib, RTLD_LAZY );
|
|
if( !dlhandle )
|
|
{
|
|
fprintf( stderr, "failed to open library '%s'\n", imp_lib );
|
|
free( imp_lib );
|
|
return NULL;
|
|
}
|
|
|
|
HookFunction *pSym = (HookFunction *) dlsym( dlhandle, "liblibreoffice_hook" );
|
|
if( !pSym ) {
|
|
fprintf( stderr, "failed to find hook in library '%s'\n", imp_lib );
|
|
free( imp_lib );
|
|
return NULL;
|
|
}
|
|
|
|
free( imp_lib );
|
|
return pSym();
|
|
}
|
|
|
|
#endif // LINUX - port me !
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|