f806c5829b
* pre-commit: Update and enable clang-format check There is newer version from clang-format so use that. We do not yet want 18 as that is little bit too new. * Format some thing by hand which clang-format "breaks" Clang-format will format some things little bit off in some cases. Format some things by hand so we get cleaner end result. * Run clang-format with ``` pre-commit run --all-files clang-format ``` We have already in previously checked places where clang-format does not make good format and ignored those (hopefully most of the things). --------- Co-authored-by: Kari Argillander <kari.argillander@fidelix.com>
38 lines
1.1 KiB
C
38 lines
1.1 KiB
C
/**************************************************************************
|
|
*
|
|
* Copyright (C) 2020 Steve Karg <skarg@users.sourceforge.net>
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*********************************************************************/
|
|
#ifndef BACNET_STACK_EXPORTS_H
|
|
#define BACNET_STACK_EXPORTS_H
|
|
|
|
#include "bacnet/bacdef.h" /* Must be before all other bacnet *.h files */
|
|
|
|
#ifdef BACNET_STACK_STATIC_DEFINE
|
|
/* We want a static library */
|
|
#define BACNET_STACK_EXPORT
|
|
#else
|
|
/* We want a shared library */
|
|
#ifdef _MSC_VER
|
|
#define BACNET_STACK_LIBRARY_IMPORT __declspec(dllimport)
|
|
#define BACNET_STACK_LIBRARY_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define BACNET_STACK_LIBRARY_IMPORT
|
|
#define BACNET_STACK_LIBRARY_EXPORT __attribute__((visibility("default")))
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef BACNET_STACK_EXPORT
|
|
#ifdef bacnet_stack_EXPORTS
|
|
/* We are building this library */
|
|
#define BACNET_STACK_EXPORT BACNET_STACK_LIBRARY_EXPORT
|
|
#else
|
|
/* We are using this library */
|
|
#define BACNET_STACK_EXPORT BACNET_STACK_LIBRARY_IMPORT
|
|
#endif
|
|
#endif
|
|
|
|
#endif /* BACNET_STACK_EXPORTS_H */
|