暫無描述
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.

BaselibDeprecatedDefinesPreInclude.h 925B

123456789101112131415161718192021222324252627
  1. #pragma once
  2. //
  3. // The following is to ensure backwards compatibility if any deprecated defines are preprocessor definitions
  4. // This file (and references) as well as the corresponding post-include should be removed once deprecated defines
  5. // have been removed in all Unity code repositories using baselib.
  6. //
  7. #ifdef PLATFORM_FUTEX_NATIVE_SUPPORT
  8. #define PLATFORM_HAS_NATIVE_FUTEX PLATFORM_FUTEX_NATIVE_SUPPORT
  9. #endif
  10. #ifdef PLATFORM_LLSC_NATIVE_SUPPORT
  11. #define PLATFORM_HAS_NATIVE_LLSC PLATFORM_LLSC_NATIVE_SUPPORT
  12. #endif
  13. #ifdef PLATFORM_POSIX_SOCKET_IP6_SUPPORT
  14. #define PLATFORM_HAS_POSIX_SOCKET_IPV6_SUPPORT PLATFORM_POSIX_SOCKET_IP6_SUPPORT
  15. #endif
  16. #ifdef PLATFORM_CACHE_LINE_SIZE
  17. #define PLATFORM_PROPERTY_CACHE_LINE_SIZE PLATFORM_CACHE_LINE_SIZE
  18. #endif
  19. #ifdef PLATFORM_MEMORY_MALLOC_MIN_ALIGNMENT
  20. #define PLATFORM_PROPERTY_MEMORY_MALLOC_MIN_ALIGNMENT PLATFORM_MEMORY_MALLOC_MIN_ALIGNMENT
  21. #endif