export.h 448 B

123456789101112131415161718
  1. #ifndef EXPORT_H
  2. #define EXPORT_H
  3. #ifdef _BUILDING_QXORM
  4. #define USER_DLL_EXPORT QX_DLL_EXPORT_HELPER
  5. #else
  6. #define USER_DLL_EXPORT QX_DLL_IMPORT_HELPER
  7. #endif
  8. #ifdef _BUILDING_QXORM
  9. #define QX_REGISTER_HPP_USER QX_REGISTER_HPP_EXPORT_DLL
  10. #define QX_REGISTER_CPP_USER QX_REGISTER_CPP_EXPORT_DLL
  11. #else
  12. #define QX_REGISTER_HPP_USER QX_REGISTER_HPP_IMPORT_DLL
  13. #define QX_REGISTER_CPP_USER QX_REGISTER_CPP_IMPORT_DLL
  14. #endif
  15. #endif // EXPORT_H