1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- #ifndef PCRECPP_INTERNAL_H
- #define PCRECPP_INTERNAL_H
- #ifndef PCRECPP_EXP_DECL
- # ifdef _WIN32
- # ifndef PCRE_STATIC
- # define PCRECPP_EXP_DECL extern __declspec(dllexport)
- # define PCRECPP_EXP_DEFN __declspec(dllexport)
- # else
- # define PCRECPP_EXP_DECL extern
- # define PCRECPP_EXP_DEFN
- # endif
- # else
- # define PCRECPP_EXP_DECL extern
- # define PCRECPP_EXP_DEFN
- # endif
- #endif
- #endif
|