7#ifndef PXR_EXEC_EXEC_IR_API_H
8#define PXR_EXEC_EXEC_IR_API_H
12#if defined(PXR_STATIC)
14# define EXECIR_API_TYPE
15# define EXECIR_API_TEMPLATE_CLASS(...)
16# define EXECIR_API_TEMPLATE_STRUCT(...)
19# if defined(EXECIR_EXPORTS)
20# define EXECIR_API ARCH_EXPORT
21# define EXECIR_API_TYPE ARCH_EXPORT_TYPE
22# define EXECIR_API_TEMPLATE_CLASS(...) ARCH_EXPORT_TEMPLATE(class, __VA_ARGS__)
23# define EXECIR_API_TEMPLATE_STRUCT(...) ARCH_EXPORT_TEMPLATE(struct, __VA_ARGS__)
25# define EXECIR_API ARCH_IMPORT
26# define EXECIR_API_TYPE
27# define EXECIR_API_TEMPLATE_CLASS(...) ARCH_IMPORT_TEMPLATE(class, __VA_ARGS__)
28# define EXECIR_API_TEMPLATE_STRUCT(...) ARCH_IMPORT_TEMPLATE(struct, __VA_ARGS__)
30# define EXECIR_LOCAL ARCH_HIDDEN
Defines symbol visibility macros.