bump product version to 4.1.6.2
[LibreOffice.git] / desktop / unx / source / splashx.h
blob90bba891dfa9cecbd13ab7772e4f8ab87301186a
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 */
9 #ifndef _SPLASHX_H
10 #define _SPLASHX_H
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
17 struct splash* splash_create(rtl_uString* pAppPath, int argc, char** argv);
19 void splash_destroy(struct splash* splash);
21 void splash_draw_progress(struct splash* splash, int progess);
23 #ifdef __cplusplus
24 } // extern "C"
25 #endif
27 #endif // _SPLASHX_H
29 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */