Avoid potential negative array index access to cached text.
[LibreOffice.git] / include / rtl / unload.h
blob23cd2fa749b600e008a9280462498fe1f201f99d
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 * This file is part of LibreOffice published API.
23 #ifndef INCLUDED_RTL_UNLOAD_H
24 #define INCLUDED_RTL_UNLOAD_H
26 #include "sal/config.h"
28 #include "osl/interlck.h"
29 #include "osl/time.h"
30 #include "sal/saldllapi.h"
31 #include "sal/types.h"
33 /** @file
34 Backwards-compatibility remainders of a removed library unloading feature.
37 #ifdef __cplusplus
38 extern "C"
40 #endif
42 /** Backwards-compatibility remainder of a removed library unloading feature.
44 @deprecated Do not use.
46 typedef struct SAL_DLLPUBLIC_RTTI _rtl_ModuleCount
48 void ( SAL_CALL * acquire ) ( struct _rtl_ModuleCount * that );
49 void ( SAL_CALL * release ) ( struct _rtl_ModuleCount * that );
50 }rtl_ModuleCount;
52 /** Backwards-compatibility remainder of a removed library unloading feature.
54 @deprecated Do not use.
56 #define MODULE_COUNT_INIT \
57 { {rtl_moduleCount_acquire,rtl_moduleCount_release}, rtl_moduleCount_canUnload, 0, {0, 0}}
59 /** Backwards-compatibility remainder of a removed library unloading feature.
61 @deprecated Do not use.
63 typedef struct _rtl_StandardModuleCount
65 rtl_ModuleCount modCnt;
66 sal_Bool ( *canUnload ) ( struct _rtl_StandardModuleCount* a, TimeValue* libUnused);
67 oslInterlockedCount counter;
68 TimeValue unusedSince;
69 } rtl_StandardModuleCount;
71 /** Backwards-compatibility remainder of a removed library unloading feature.
73 @deprecated Do not use.
75 SAL_DLLPUBLIC void rtl_moduleCount_acquire(rtl_ModuleCount * that ) SAL_COLD;
77 /** Backwards-compatibility remainder of a removed library unloading feature.
79 @deprecated Do not use.
81 SAL_DLLPUBLIC void rtl_moduleCount_release( rtl_ModuleCount * that ) SAL_COLD;
83 /** Backwards-compatibility remainder of a removed library unloading feature.
85 @deprecated Do not use.
87 SAL_DLLPUBLIC sal_Bool rtl_moduleCount_canUnload( rtl_StandardModuleCount * that, TimeValue* libUnused) SAL_COLD;
89 #ifdef __cplusplus
91 #endif
94 #endif
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */