corrected version (with typedef struct IOTHUB_CLIENT_LL_UPLOADTOBLOB_HANDLE_DATA* IOTHUB_CLIENT_LL_UPLOADTOBLOB_HANDLE;) included in the sources
Dependents: STM32F746_iothub_client_sample_mqtt
Fork of iothub_client by
iothub_client_version.h@39:2719651a5bee, 2016-04-24 (annotated)
- Committer:
- AzureIoTClient
- Date:
- Sun Apr 24 16:40:16 2016 -0700
- Revision:
- 39:2719651a5bee
- Parent:
- 38:a05929a75111
- Child:
- 40:1a94db9139ea
1.0.5
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
AzureIoTClient | 33:b372b0efcd20 | 1 | // Copyright (c) Microsoft. All rights reserved. |
AzureIoTClient | 33:b372b0efcd20 | 2 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. |
AzureIoTClient | 33:b372b0efcd20 | 3 | |
AzureIoTClient | 33:b372b0efcd20 | 4 | /** @file version.h |
AzureIoTClient | 33:b372b0efcd20 | 5 | * @brief Functions for managing the client SDK version. |
AzureIoTClient | 33:b372b0efcd20 | 6 | */ |
AzureIoTClient | 33:b372b0efcd20 | 7 | |
AzureIoTClient | 33:b372b0efcd20 | 8 | #ifndef IOTHUB_CLIENT_VERSION_H |
AzureIoTClient | 33:b372b0efcd20 | 9 | #define IOTHUB_CLIENT_VERSION_H |
AzureIoTClient | 33:b372b0efcd20 | 10 | |
AzureIoTClient | 39:2719651a5bee | 11 | #define IOTHUB_SDK_VERSION "1.0.5" |
AzureIoTClient | 33:b372b0efcd20 | 12 | |
AzureIoTClient | 33:b372b0efcd20 | 13 | #ifdef __cplusplus |
AzureIoTClient | 33:b372b0efcd20 | 14 | extern "C" |
AzureIoTClient | 33:b372b0efcd20 | 15 | { |
AzureIoTClient | 33:b372b0efcd20 | 16 | #endif |
AzureIoTClient | 33:b372b0efcd20 | 17 | |
AzureIoTClient | 33:b372b0efcd20 | 18 | /** |
AzureIoTClient | 33:b372b0efcd20 | 19 | * @brief Returns a pointer to a null terminated string containing the |
AzureIoTClient | 33:b372b0efcd20 | 20 | * current IoT Hub Client SDK version. |
AzureIoTClient | 33:b372b0efcd20 | 21 | * |
AzureIoTClient | 33:b372b0efcd20 | 22 | * @return Pointer to a null terminated string containing the |
AzureIoTClient | 33:b372b0efcd20 | 23 | * current IoT Hub Client SDK version. |
AzureIoTClient | 33:b372b0efcd20 | 24 | */ |
AzureIoTClient | 33:b372b0efcd20 | 25 | extern const char* IoTHubClient_GetVersionString(void); |
AzureIoTClient | 33:b372b0efcd20 | 26 | |
AzureIoTClient | 33:b372b0efcd20 | 27 | #ifdef __cplusplus |
AzureIoTClient | 33:b372b0efcd20 | 28 | } |
AzureIoTClient | 33:b372b0efcd20 | 29 | #endif |
AzureIoTClient | 33:b372b0efcd20 | 30 | |
AzureIoTClient | 33:b372b0efcd20 | 31 | #endif // IOTHUB_CLIENT_VERSION_H |