Files
SDL3CPlusPlus/MaterialX/source/MaterialXCore/Export.h
T
2026-01-06 13:25:49 +00:00

23 lines
593 B
C

//
// Copyright Contributors to the MaterialX Project
// SPDX-License-Identifier: Apache-2.0
//
#ifndef MATERIALX_CORE_EXPORT_H
#define MATERIALX_CORE_EXPORT_H
#include <MaterialXCore/Library.h>
/// @file
/// Import and export declarations for the Core library.
#if defined(MATERIALX_CORE_EXPORTS)
#define MX_CORE_API MATERIALX_SYMBOL_EXPORT
#define MX_CORE_EXTERN_TEMPLATE(...) MATERIALX_EXPORT_EXTERN_TEMPLATE(__VA_ARGS__)
#else
#define MX_CORE_API MATERIALX_SYMBOL_IMPORT
#define MX_CORE_EXTERN_TEMPLATE(...) MATERIALX_IMPORT_EXTERN_TEMPLATE(__VA_ARGS__)
#endif
#endif