1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 #ifndef ANDROID_BOOSTRAP_H
11 #define ANDROID_BOOSTRAP_H
22 #include <osl/detail/component-mapping.h>
24 typedef struct lo_apk_dir lo_apk_dir
;
26 void *lo_apkentry(const char *filename
,
29 lo_apk_dir
*lo_apk_opendir(const char *dirname
);
31 struct dirent
*lo_apk_readdir(lo_apk_dir
*dirp
);
33 int lo_apk_closedir(lo_apk_dir
*dirp
);
35 int lo_apk_lstat(const char *path
, struct stat
*statp
);
37 int lo_dlcall_argc_argv(void *function
,
41 JavaVM
*lo_get_javavm(void);
43 const char *lo_get_app_data_dir(void);
51 #endif // ANDROID_BOOTSTRAP_H
53 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */