applibs_versions.h 965 B

12345678910111213141516171819202122232425
  1. #pragma once
  2. /// <summary>
  3. /// This identifier should be defined before including any of the networking-related header files.
  4. /// It indicates which version of the Wi-Fi data structures the application uses.
  5. /// </summary>
  6. #define NETWORKING_STRUCTS_VERSION 1
  7. /// <summary>
  8. /// This identifier must be defined before including any of the Wi-Fi related header files.
  9. /// It indicates which version of the Wi-Fi data structures the application uses.
  10. /// </summary>
  11. #define WIFICONFIG_STRUCTS_VERSION 1
  12. /// <summary>
  13. /// This identifier must be defined before including any of the UART-related header files.
  14. /// It indicates which version of the UART data structures the application uses.
  15. /// </summary>
  16. #define UART_STRUCTS_VERSION 1
  17. /// <summary>
  18. /// This identifier must be defined before including any of the SPI-related header files.
  19. /// It indicates which version of the SPI data structures the application uses.
  20. /// </summary>
  21. #define SPI_STRUCTS_VERSION 1