You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #ifndef LITE_MACRO_H_
- #define LITE_MACRO_H_
-
- #if defined(_WIN32)
- #define LITE_API __declspec(dllexport)
- #else
- #define LITE_API __attribute__((visibility("default")))
- #endif
- #endif
-
- // vim: syntax=cpp.doxygen foldmethod=marker foldmarker=f{{{,f}}}
|