7#ifndef PXR_EXEC_EF_API_H
8#define PXR_EXEC_EF_API_H
12#if defined(PXR_STATIC)
15# define EF_API_TEMPLATE_CLASS(...)
16# define EF_API_TEMPLATE_STRUCT(...)
19# if defined(EF_EXPORTS)
20# define EF_API ARCH_EXPORT
21# define EF_API_TYPE ARCH_EXPORT_TYPE
22# define EF_API_TEMPLATE_CLASS(...) ARCH_EXPORT_TEMPLATE(class, __VA_ARGS__)
23# define EF_API_TEMPLATE_STRUCT(...) ARCH_EXPORT_TEMPLATE(struct, __VA_ARGS__)
25# define EF_API ARCH_IMPORT
27# define EF_API_TEMPLATE_CLASS(...) ARCH_IMPORT_TEMPLATE(class, __VA_ARGS__)
28# define EF_API_TEMPLATE_STRUCT(...) ARCH_IMPORT_TEMPLATE(struct, __VA_ARGS__)
30# define EF_LOCAL ARCH_HIDDEN
Defines symbol visibility macros.