#ifndef PPAPI_PROXY_PPAPI_PROXY_EXPORT_H_
#define PPAPI_PROXY_PPAPI_PROXY_EXPORT_H_
#if defined(COMPONENT_BUILD) && !defined(NACL_WIN64)
#if defined(WIN32)
#if defined(PPAPI_PROXY_IMPLEMENTATION)
#define PPAPI_PROXY_EXPORT __declspec(dllexport)
#else
#define PPAPI_PROXY_EXPORT __declspec(dllimport)
#endif
#else
#if defined(PPAPI_PROXY_IMPLEMENTATION)
#define PPAPI_PROXY_EXPORT __attribute__((visibility("default")))
#else
#define PPAPI_PROXY_EXPORT
#endif
#endif
#else
#define PPAPI_PROXY_EXPORT
#endif
#endif