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

Revision:
1:bec6dd049b54
Parent:
0:e393db310d89
Child:
9:3ec7e2695f98
--- a/iothub_client_ll.c	Tue Sep 15 21:47:12 2015 -0700
+++ b/iothub_client_ll.c	Tue Sep 15 22:25:50 2015 -0700
@@ -12,6 +12,7 @@
 #include "iothub_client_ll.h"
 #include "iothub_client_private.h"
 #include "doublylinkedlist.h"
+#include "version.h"
 
 #include "iot_logging.h"
 
@@ -40,6 +41,10 @@
 {
     IOTHUB_CLIENT_LL_HANDLE* result = NULL;
 
+    /*Codes_SRS_IOTHUBCLIENT_LL_05_001: [IoTHubClient_LL_CreateFromConnectionString shall obtain the version string by a call to IoTHubClient_GetVersionString.]*/
+    /*Codes_SRS_IOTHUBCLIENT_LL_05_002: [IoTHubClient_LL_CreateFromConnectionString shall print the version string to standard output.]*/
+    LogInfo("IoT Hub SDK for C, version %s\r\n", IoTHubClient_GetVersionString());
+
     /* SRS_IOTHUBCLIENT_LL_12_003: [IoTHubClient_LL_CreateFromConnectionString shall verify the input parameter and if it is NULL then return NULL] */
     if (connectionString == NULL)
     {