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:
37:18310e4d888d
Parent:
36:67300d5a4c1f
Child:
38:a05929a75111
--- a/iothub_client_ll.h	Fri Mar 11 17:00:59 2016 -0800
+++ b/iothub_client_ll.h	Fri Mar 25 16:00:25 2016 -0700
@@ -31,6 +31,9 @@
 
 #include "xio.h"
 
+#include "doublylinkedlist.h"
+
+
 #ifdef __cplusplus
 extern "C"
 {
@@ -133,6 +136,14 @@
 
 } IOTHUB_CLIENT_DEVICE_CONFIG;
 
+/** @brief	This struct captures IoTHub transport configuration. */
+typedef struct IOTHUBTRANSPORT_CONFIG_TAG
+{
+	const IOTHUB_CLIENT_CONFIG* upperConfig;
+	PDLIST_ENTRY waitingToSend;
+}IOTHUBTRANSPORT_CONFIG;
+
+
 /**
  * @brief	Creates a IoT Hub client for communication with an existing
  * 			IoT Hub using the specified connection string parameter.