/* -*- 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/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ /* * This file is part of LibreOffice published API. */ #ifndef INCLUDED_RTL_UNLOAD_H #define INCLUDED_RTL_UNLOAD_H #include "sal/config.h" #include "osl/interlck.h" #include "osl/time.h" #include "sal/saldllapi.h" #include "sal/types.h" /** @file Backwards-compatibility remainders of a removed library unloading feature. */ #ifdef __cplusplus extern "C" { #endif /** Backwards-compatibility remainder of a removed library unloading feature. @deprecated Do not use. */ typedef struct SAL_DLLPUBLIC_RTTI _rtl_ModuleCount { void ( SAL_CALL * acquire ) ( struct _rtl_ModuleCount * that ); void ( SAL_CALL * release ) ( struct _rtl_ModuleCount * that ); }rtl_ModuleCount; /** Backwards-compatibility remainder of a removed library unloading feature. @deprecated Do not use. */ #define MODULE_COUNT_INIT \ { {rtl_moduleCount_acquire,rtl_moduleCount_release}, rtl_moduleCount_canUnload, 0, {0, 0}} /** Backwards-compatibility remainder of a removed library unloading feature. @deprecated Do not use. */ typedef struct _rtl_StandardModuleCount { rtl_ModuleCount modCnt; sal_Bool ( *canUnload ) ( struct _rtl_StandardModuleCount* a, TimeValue* libUnused); oslInterlockedCount counter; TimeValue unusedSince; } rtl_StandardModuleCount; /** Backwards-compatibility remainder of a removed library unloading feature. @deprecated Do not use. */ SAL_DLLPUBLIC void rtl_moduleCount_acquire(rtl_ModuleCount * that ) SAL_COLD; /** Backwards-compatibility remainder of a removed library unloading feature. @deprecated Do not use. */ SAL_DLLPUBLIC void rtl_moduleCount_release( rtl_ModuleCount * that ) SAL_COLD; /** Backwards-compatibility remainder of a removed library unloading feature. @deprecated Do not use. */ SAL_DLLPUBLIC sal_Bool rtl_moduleCount_canUnload( rtl_StandardModuleCount * that, TimeValue* libUnused) SAL_COLD; #ifdef __cplusplus } #endif #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ ora/co-24.04.11'>distro/collabora/co-24.04.11 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/schema
AgeCommit message (Expand)Author
2019-02-27tdf#123557 PPTX: Export timenode condition targets.Mark Hung
2019-02-14sw btlr writing mode: add odf spec proposal URLMiklos Vajna
2019-02-13sw btlr writing mode: implement ODF filterMiklos Vajna
2018-12-13address forward incompatibility of InputRequired default changeLionel Elie Mamane
2018-09-28Fix dictionnary -> dictionaryAndrea Gelmini
2018-08-04Fix typosAndrea Gelmini
2018-07-06tdf#101856 odt: write/read new bookmark attributes: unit testSerge Krot
2018-07-04Fix typoAndrea Gelmini
2018-07-03schema: add some simple things found in ODT exported from crashtestingMichael Stahl
2018-07-03schema: add README, as requested by NoelMichael Stahl
2018-06-30schema,sw: enable ODF validation in all sw testsMichael Stahl
2018-06-30schema,sd: enable ODF validation in sd testsMichael Stahl
2018-06-29schema: ODF 1.3 + libreoffice extensions schemaMichael Stahl
2018-06-29schema: hack for the version numberMichael Stahl
2018-06-28schema: fix some obvious issues in ODF 1.3 schemasMichael Stahl
2018-06-28schema: update to latest available ODF 1.3 draft schemasMichael Stahl
2018-06-26schema: add MathML2 XSDMichael Stahl
2017-07-19revert fix typosThorsten Behrens