summaryrefslogtreecommitdiff
path: root/sal/inc/rtllifecycle.h
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2016-04-07 12:37:56 +0300
committerTor Lillqvist <tml@collabora.com>2016-04-07 12:41:11 +0300
commitc5e119f51bd07fb11ac04a58dacf3f79695d02a9 (patch)
treec297bc8e4f04e1a8b1c45162192bf5ef9b204f2d /sal/inc/rtllifecycle.h
parent43a31e3a727760cf4cf82cdc19ca4c8dcc8a057d (diff)
Drop pointless "internal" directory level for already internal include files
Change-Id: I496fdbab3e17c806c2d16513412c4c1b9120bc3c
Diffstat (limited to 'sal/inc/rtllifecycle.h')
-rw-r--r--sal/inc/rtllifecycle.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/sal/inc/rtllifecycle.h b/sal/inc/rtllifecycle.h
new file mode 100644
index 000000000000..29a493b8a802
--- /dev/null
+++ b/sal/inc/rtllifecycle.h
@@ -0,0 +1,47 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#ifndef INCLUDED_SAL_INC_INTERNAL_RTLLIFECYCLE_H
+#define INCLUDED_SAL_INC_INTERNAL_RTLLIFECYCLE_H
+
+#if defined __cplusplus
+extern "C" {
+#endif
+
+void rtl_arena_init();
+
+void rtl_arena_fini();
+
+void ensureArenaSingleton();
+
+void rtl_cache_init();
+
+void rtl_cache_fini();
+
+void ensureCacheSingleton();
+
+void rtl_memory_init();
+
+void rtl_memory_fini();
+
+void ensureMemorySingleton();
+
+void rtl_locale_init();
+
+void rtl_locale_fini();
+
+void ensureLocaleSingleton();
+
+#if defined __cplusplus
+}
+#endif
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */