libscratchcpp
A library for C++ based Scratch project players
Loading...
Searching...
No Matches
test_export.h
Go to the documentation of this file.
1// SPDX-License-Identifier: Apache-2.0
2
3#pragma once
4
5#ifdef LIBSCRATCHCPP_TEST
6#if defined(_MSC_VER) || defined(WIN64) || defined(_WIN64) || defined(__WIN64__) || defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__)
7#define LIBSCRATCHCPP_TEST_EXPORT __declspec(dllexport)
8#else
9#define LIBSCRATCHCPP_TEST_EXPORT __attribute__((visibility("default")))
10#endif
11#else
12#define LIBSCRATCHCPP_TEST_EXPORT
13#endif