bump product version to 5.0.4.1
[LibreOffice.git] / sal / inc / internal / rtllifecycle.h
blob29a493b8a802bc69c6574af1b433f8e90aae5744
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_SAL_INC_INTERNAL_RTLLIFECYCLE_H
11 #define INCLUDED_SAL_INC_INTERNAL_RTLLIFECYCLE_H
13 #if defined __cplusplus
14 extern "C" {
15 #endif
17 void rtl_arena_init();
19 void rtl_arena_fini();
21 void ensureArenaSingleton();
23 void rtl_cache_init();
25 void rtl_cache_fini();
27 void ensureCacheSingleton();
29 void rtl_memory_init();
31 void rtl_memory_fini();
33 void ensureMemorySingleton();
35 void rtl_locale_init();
37 void rtl_locale_fini();
39 void ensureLocaleSingleton();
41 #if defined __cplusplus
43 #endif
45 #endif
47 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */