nss: upgrade to release 3.73
[LibreOffice.git] / desktop / unx / source / splashx.h
blob0ca1ba65596176209d5519132536c3750ebecfdd
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 #pragma once
11 #include <rtl/ustring.h>
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
17 struct splash;
19 struct splash* splash_create(rtl_uString* pAppPath, int argc, char** argv);
21 void splash_destroy(struct splash* splash);
23 void splash_draw_progress(struct splash* splash, int progress);
25 #ifdef __cplusplus
26 } // extern "C"
27 #endif
29 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */