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:
43:038d8511e817
Parent:
42:448eecc3676e
Child:
44:126f118a71ba
--- a/iothub_client_ll_uploadtoblob.h	Tue Jun 07 10:49:08 2016 -0700
+++ b/iothub_client_ll_uploadtoblob.h	Fri Jun 17 17:02:44 2016 -0700
@@ -20,6 +20,8 @@
 *			 often not desired.
 */
 
+#ifdef USE_UPLOADTOBLOB
+
 #ifndef IOTHUB_CLIENT_LL_UPLOADTOBLOB_H
 #define IOTHUB_CLIENT_LL_UPLOADTOBLOB_H
 
@@ -44,3 +46,7 @@
 #endif
 
 #endif /* IOTHUB_CLIENT_LL_UPLOADTOBLOB_H */
+
+#else
+#error "trying to #include iothub_client_ll_uploadtoblob.h in absence of #define USE_UPLOADTOBLOB"
+#endif /*USE_UPLOADTOBLOB*/