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:
38:a05929a75111
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
Azure.IoT Build 37:18310e4d888d 1 // Copyright (c) Microsoft. All rights reserved.
Azure.IoT Build 37:18310e4d888d 2 // Licensed under the MIT license. See LICENSE file in the project root for full license information.
Azure.IoT Build 37:18310e4d888d 3
Azure.IoT Build 37:18310e4d888d 4 #ifndef IOTHUB_TRANSPORT_H
Azure.IoT Build 37:18310e4d888d 5 #define IOTHUB_TRANSPORT_H
Azure.IoT Build 37:18310e4d888d 6
Azure.IoT Build 37:18310e4d888d 7 typedef struct TRANSPORT_HANDLE_DATA_TAG* TRANSPORT_HANDLE;
Azure.IoT Build 37:18310e4d888d 8
Azure.IoT Build 38:a05929a75111 9 #include "azure_c_shared_utility/lock.h"
Azure.IoT Build 38:a05929a75111 10 #include "azure_c_shared_utility/crt_abstractions.h"
Azure.IoT Build 37:18310e4d888d 11 #include "iothub_client.h"
Azure.IoT Build 37:18310e4d888d 12 #include "iothub_client_private.h"
Azure.IoT Build 38:a05929a75111 13 #include "iothub_transport_ll.h"
Azure.IoT Build 37:18310e4d888d 14
Azure.IoT Build 37:18310e4d888d 15 #ifdef __cplusplus
Azure.IoT Build 37:18310e4d888d 16 extern "C"
Azure.IoT Build 37:18310e4d888d 17 {
Azure.IoT Build 37:18310e4d888d 18 #endif
Azure.IoT Build 37:18310e4d888d 19
Azure.IoT Build 37:18310e4d888d 20 extern TRANSPORT_HANDLE IoTHubTransport_Create(IOTHUB_CLIENT_TRANSPORT_PROVIDER protocol, const char* iotHubName, const char* iotHubSuffix);
Azure.IoT Build 38:a05929a75111 21 extern void IoTHubTransport_Destroy(TRANSPORT_HANDLE transportHandle);
Azure.IoT Build 38:a05929a75111 22 extern LOCK_HANDLE IoTHubTransport_GetLock(TRANSPORT_HANDLE transportHandle);
Azure.IoT Build 38:a05929a75111 23 extern TRANSPORT_LL_HANDLE IoTHubTransport_GetLLTransport(TRANSPORT_HANDLE transportHandle);
Azure.IoT Build 38:a05929a75111 24 extern IOTHUB_CLIENT_RESULT IoTHubTransport_StartWorkerThread(TRANSPORT_HANDLE transportHandle, IOTHUB_CLIENT_HANDLE clientHandle);
Azure.IoT Build 38:a05929a75111 25 extern bool IoTHubTransport_SignalEndWorkerThread(TRANSPORT_HANDLE transportHandle, IOTHUB_CLIENT_HANDLE clientHandle);
Azure.IoT Build 38:a05929a75111 26 extern void IoTHubTransport_JoinWorkerThread(TRANSPORT_HANDLE transportHandle, IOTHUB_CLIENT_HANDLE clientHandle);
Azure.IoT Build 37:18310e4d888d 27
Azure.IoT Build 37:18310e4d888d 28 #ifdef __cplusplus
Azure.IoT Build 37:18310e4d888d 29 }
Azure.IoT Build 37:18310e4d888d 30 #endif
Azure.IoT Build 37:18310e4d888d 31
Azure.IoT Build 37:18310e4d888d 32 #endif /* IOTHUB_TRANSPORT_H */