7#ifndef EXT_RMANPKG_PLUGIN_RENDERMAN_PLUGIN_HD_PRMAN_LOADER_API_H
8#define EXT_RMANPKG_PLUGIN_RENDERMAN_PLUGIN_HD_PRMAN_LOADER_API_H
12#if defined(PXR_STATIC)
13# define HDPRMANLOADER_API
14# define HDPRMANLOADER_API_TEMPLATE_CLASS(...)
15# define HDPRMANLOADER_API_TEMPLATE_STRUCT(...)
16# define HDPRMANLOADER_LOCAL
18# if defined(HDPRMANLOADER_EXPORTS)
19# define HDPRMANLOADER_API ARCH_EXPORT
20# define HDPRMANLOADER_API_TEMPLATE_CLASS(...) ARCH_EXPORT_TEMPLATE(class, __VA_ARGS__)
21# define HDPRMANLOADER_API_TEMPLATE_STRUCT(...) ARCH_EXPORT_TEMPLATE(struct, __VA_ARGS__)
23# define HDPRMANLOADER_API ARCH_IMPORT
24# define HDPRMANLOADER_API_TEMPLATE_CLASS(...) ARCH_IMPORT_TEMPLATE(class, __VA_ARGS__)
25# define HDPRMANLOADER_API_TEMPLATE_STRUCT(...) ARCH_IMPORT_TEMPLATE(struct, __VA_ARGS__)
27# define HDPRMANLOADER_LOCAL ARCH_HIDDEN
Defines symbol visibility macros.