Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-17 08:35:04

0001 #ifndef THRIFT_EXPORT_H
0002 #define THRIFT_EXPORT_H
0003 
0004 #ifdef THRIFT_STATIC_DEFINE
0005 #  define THRIFT_EXPORT
0006 #elif defined(_MSC_VER )
0007 #  ifndef THRIFT_EXPORT
0008 #    ifdef thrift_EXPORTS
0009           /* We are building this library */
0010 #      define THRIFT_EXPORT __declspec(dllexport)
0011 #    else
0012           /* We are using this library */
0013 #      define THRIFT_EXPORT __declspec(dllimport)
0014 #    endif
0015 #  endif
0016 #else
0017 #  define THRIFT_EXPORT
0018 #endif
0019 
0020 #endif /* THRIFT_EXPORT_H */