HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Export.h
Go to the documentation of this file.
1 //
2 // Copyright Contributors to the MaterialX Project
3 // SPDX-License-Identifier: Apache-2.0
4 //
5 
6 #ifndef MATERIALX_RENDERHW_EXPORT_H
7 #define MATERIALX_RENDERHW_EXPORT_H
8 
10 
11 /// @file
12 /// Macros for declaring imported and exported symbols.
13 
14 #if defined(MATERIALX_RENDERHW_EXPORTS)
15  #define MX_RENDERHW_API MATERIALX_SYMBOL_EXPORT
16  #define MX_RENDERHW_EXTERN_TEMPLATE(...) MATERIALX_EXPORT_EXTERN_TEMPLATE(__VA_ARGS__)
17 #else
18  #define MX_RENDERHW_API MATERIALX_SYMBOL_IMPORT
19  #define MX_RENDERHW_EXTERN_TEMPLATE(...) MATERIALX_IMPORT_EXTERN_TEMPLATE(__VA_ARGS__)
20 #endif
21 
22 #endif