You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
685 B

1 year ago
  1. #pragma once
  2. #if defined (_WIN32)
  3. #if defined (BESTSHOT_MOBILE__DLL_EXPORTS)
  4. #define BESTSHOT_MOBILE_API __declspec(dllexport) //!< DLL export specifier.
  5. #else
  6. #define BESTSHOT_MOBILE_API __declspec(dllimport) //!< DLL import specifier.
  7. #endif
  8. #else
  9. #if __GNUC__ >= 4
  10. #define BESTSHOT_MOBILE_API __attribute__ ((visibility ("default")))
  11. #else
  12. #define BESTSHOT_MOBILE_API //!< Dummy.
  13. #endif
  14. #endif
  15. //! Major version.
  16. #define BESTSHOT_MOBILE_MAJOR 0
  17. //! Minor version.
  18. #define BESTSHOT_MOBILE_MINOR 0
  19. //! Patch version.
  20. #define BESTSHOT_MOBILE_PATCH 0
  21. //! Revision hash.
  22. #define BESTSHOT_MOBILE_HASH "47f2dc86e642241dff597387dd218d5cef11be3b"