Microsoft Azure IoTHub client libraries
Dependents: sht15_remote_monitoring RobotArmDemo iothub_client_sample_amqp f767zi_mqtt ... more
This library implements the Microsoft Azure IoTHub client library. The code is replicated from https://github.com/Azure/azure-iot-sdks
iothub_client_version.h@80:db5f5237bc95, 2017-12-15 (annotated)
- Committer:
- AzureIoTClient
- Date:
- Fri Dec 15 14:09:20 2017 -0800
- Revision:
- 80:db5f5237bc95
- Parent:
- 79:bb88037c05e6
- Child:
- 81:8de701563187
1.1.29
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 | 40:1a94db9139ea | 4 | /** @file iothub_client_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 | 80:db5f5237bc95 | 11 | #define IOTHUB_SDK_VERSION "1.1.29" |
AzureIoTClient | 53:1e5a1ca1f274 | 12 | |
AzureIoTClient | 53:1e5a1ca1f274 | 13 | #include "azure_c_shared_utility/umock_c_prod.h" |
AzureIoTClient | 33:b372b0efcd20 | 14 | |
AzureIoTClient | 33:b372b0efcd20 | 15 | #ifdef __cplusplus |
AzureIoTClient | 33:b372b0efcd20 | 16 | extern "C" |
AzureIoTClient | 33:b372b0efcd20 | 17 | { |
AzureIoTClient | 33:b372b0efcd20 | 18 | #endif |
AzureIoTClient | 33:b372b0efcd20 | 19 | |
AzureIoTClient | 33:b372b0efcd20 | 20 | /** |
AzureIoTClient | 33:b372b0efcd20 | 21 | * @brief Returns a pointer to a null terminated string containing the |
AzureIoTClient | 33:b372b0efcd20 | 22 | * current IoT Hub Client SDK version. |
AzureIoTClient | 33:b372b0efcd20 | 23 | * |
AzureIoTClient | 33:b372b0efcd20 | 24 | * @return Pointer to a null terminated string containing the |
AzureIoTClient | 33:b372b0efcd20 | 25 | * current IoT Hub Client SDK version. |
AzureIoTClient | 33:b372b0efcd20 | 26 | */ |
AzureIoTClient | 53:1e5a1ca1f274 | 27 | MOCKABLE_FUNCTION(, const char*, IoTHubClient_GetVersionString); |
AzureIoTClient | 33:b372b0efcd20 | 28 | |
AzureIoTClient | 33:b372b0efcd20 | 29 | #ifdef __cplusplus |
AzureIoTClient | 33:b372b0efcd20 | 30 | } |
AzureIoTClient | 33:b372b0efcd20 | 31 | #endif |
AzureIoTClient | 33:b372b0efcd20 | 32 | |
AzureIoTClient | 33:b372b0efcd20 | 33 | #endif // IOTHUB_CLIENT_VERSION_H |