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 Azure IoT

Committer:
DieterGraef
Date:
Sun Jun 19 20:50:15 2016 +0000
Revision:
44:126f118a71ba
Parent:
33:b372b0efcd20
got compiling errors when typedef struct IOTHUB_CLIENT_LL_UPLOADTOBLOB_HANDLE_DATA* IOTHUB_CLIENT_LL_UPLOADTOBLOB_HANDLE; was not included in the sources

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AzureIoTClient 6:6239db25586d 1 // Copyright (c) Microsoft. All rights reserved.
AzureIoTClient 6:6239db25586d 2 // Licensed under the MIT license. See LICENSE file in the project root for full license information.
AzureIoTClient 6:6239db25586d 3
AzureIoTClient 33:b372b0efcd20 4 #include "iothub_client_version.h"
AzureIoTClient 6:6239db25586d 5
AzureIoTClient 6:6239db25586d 6 const char* IoTHubClient_GetVersionString(void)
AzureIoTClient 6:6239db25586d 7 {
AzureIoTClient 6:6239db25586d 8 /*Codes_SRS_IOTHUBCLIENT_05_001: [IoTHubClient_GetVersionString shall return a pointer to a constant string which indicates the version of IoTHubClient API.]*/
AzureIoTClient 6:6239db25586d 9 return IOTHUB_SDK_VERSION;
AzureIoTClient 6:6239db25586d 10 }