-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathapplibs_versions.h
36 lines (30 loc) · 1.08 KB
/
applibs_versions.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
/**
@file applibs_versions.h
*/
#pragma once
/// <summary>
/// This identifier should be defined before including any of the
/// networking-related header files. It indicates which version of the Wi-Fi
/// data structures the application uses.
/// </summary>
#define NETWORKING_STRUCTS_VERSION 1
/// <summary>
/// This identifier must be defined before including any of the Wi-Fi related
/// header files. It indicates which version of the Wi-Fi data structures the
/// application uses.
/// </summary>
#define WIFICONFIG_STRUCTS_VERSION 1
/// <summary>
/// This identifier must be defined before including any of the UART-related
/// header files. It indicates which version of the UART data structures the
/// application uses.
/// </summary>
#define UART_STRUCTS_VERSION 1
/// <summary>
/// This identifier must be defined before including any of the SPI-related
/// header files. It indicates which version of the SPI data structures the
/// application uses.
/// </summary>
#define SPI_STRUCTS_VERSION 1