bump product version to 7.6.3.2-android
[LibreOffice.git] / include / LibreOfficeKit / LibreOfficeKitTypes.h
blob8513ef75421d68d6b3295afa9a78b87173a20ac1
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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/.
8 */
10 #ifndef INCLUDED_LIBREOFFICEKIT_LIBREOFFICEKIT_TYPES_H
11 #define INCLUDED_LIBREOFFICEKIT_LIBREOFFICEKIT_TYPES_H
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
17 /** @see lok::Office::registerCallback().
18 @since LibreOffice 6.0
20 typedef void (*LibreOfficeKitCallback)(int nType, const char* pPayload, void* pData);
22 /** @see lok::Office::runLoop().
23 @since LibreOffice 6.3
25 typedef int (*LibreOfficeKitPollCallback)(void* pData, int timeoutUs);
26 typedef void (*LibreOfficeKitWakeCallback)(void* pData);
28 #ifdef __cplusplus
30 #endif
32 #endif // INCLUDED_LIBREOFFICEKIT_LIBREOFFICEKIT_TYPES_H
34 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */