forked from AcademySoftwareFoundation/MaterialX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExport.h
More file actions
22 lines (17 loc) · 643 Bytes
/
Export.h
File metadata and controls
22 lines (17 loc) · 643 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// TM & (c) 2021 Lucasfilm Entertainment Company Ltd. and Lucasfilm Ltd.
// All rights reserved. See LICENSE.txt for license.
//
#ifndef MATERIALX_GENOSL_EXPORT_H
#define MATERIALX_GENOSL_EXPORT_H
#include <MaterialXCore/Library.h>
/// @file
/// Macros for declaring imported and exported symbols.
#if defined(MATERIALX_GENOSL_EXPORTS)
#define MX_GENOSL_API MATERIALX_SYMBOL_EXPORT
#define MX_GENOSL_EXTERN_TEMPLATE(...) MATERIALX_EXPORT_EXTERN_TEMPLATE(__VA_ARGS__)
#else
#define MX_GENOSL_API MATERIALX_SYMBOL_IMPORT
#define MX_GENOSL_EXTERN_TEMPLATE(...) MATERIALX_IMPORT_EXTERN_TEMPLATE(__VA_ARGS__)
#endif
#endif