Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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