diff options
author | Jan Holesovsky <kendy@collabora.com> | 2019-02-15 11:46:36 +0100 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2019-03-11 17:45:56 +0100 |
commit | cb6d77987c614449a42162541ec3afa36a2959e7 (patch) | |
tree | 1b671ce3252299d832983ad5ebc6c4010403b940 /include/LibreOfficeKit | |
parent | f43483ce36b8a50ecc9266f26bc7b4ac302c6661 (diff) |
android: Separate the Android-specific setup from the actual LOK init.
Change-Id: I433376dfea0a43c63827ba15308a614f3466fb71
Reviewed-on: https://gerrit.libreoffice.org/67875
Tested-by: Jenkins
Reviewed-by: Jan Holesovsky <kendy@collabora.com>
Diffstat (limited to 'include/LibreOfficeKit')
-rw-r--r-- | include/LibreOfficeKit/LibreOfficeKitInit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/LibreOfficeKit/LibreOfficeKitInit.h b/include/LibreOfficeKit/LibreOfficeKitInit.h index 5dbf2f83f988..c00c33193648 100644 --- a/include/LibreOfficeKit/LibreOfficeKitInit.h +++ b/include/LibreOfficeKit/LibreOfficeKitInit.h @@ -249,13 +249,13 @@ typedef LibreOfficeKit *(LokHookFunction2)( const char *install_path, const char typedef int (LokHookPreInit) ( const char *install_path, const char *user_profile_url ); -#if defined(IOS) +#if defined(IOS) || defined(ANDROID) LibreOfficeKit *libreofficekit_hook_2(const char* install_path, const char* user_profile_path); #endif static LibreOfficeKit *lok_init_2( const char *install_path, const char *user_profile_url ) { -#if !defined(IOS) +#if !defined(IOS) && !defined(ANDROID) void *dlhandle; char *imp_lib; LokHookFunction *pSym; |