Files
core/include/desktop/dllapi.h
Devashish Gupta d986127690 tdf#143148: Use pragma once instead of include guards
Change-Id: Ibfc42cd388f08e5e4c84c2761f6b5ec3f37f7a0c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/183139
Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Tested-by: Jenkins
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
2025-03-20 19:29:22 +01:00

28 lines
763 B
C

/* -*- 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/.
*/
#pragma once
#include <sal/config.h>
#include <sal/types.h>
#if defined(DESKTOP_DLLIMPLEMENTATION)
#define DESKTOP_DLLPUBLIC SAL_DLLPUBLIC_EXPORT
#else
#define DESKTOP_DLLPUBLIC SAL_DLLPUBLIC_IMPORT
#endif
#if defined(CRASHREPORT_DLLIMPLEMENTATION)
#define CRASHREPORT_DLLPUBLIC SAL_DLLPUBLIC_EXPORT
#else
#define CRASHREPORT_DLLPUBLIC SAL_DLLPUBLIC_IMPORT
#endif
/* vim: set shiftwidth=4 softtabstop=4 expandtab: */