Microsoft Azure IoTHub client libraries
Dependents: sht15_remote_monitoring RobotArmDemo iothub_client_sample_amqp f767zi_mqtt ... more
This library implements the Microsoft Azure IoTHub client library. The code is replicated from https://github.com/Azure/azure-iot-sdks
Diff: iothub_client_core.h
- Revision:
- 92:97148cf9aa2a
- Parent:
- 91:bbf806070c5f
--- a/iothub_client_core.h Thu Jul 12 18:09:13 2018 -0700 +++ b/iothub_client_core.h Tue Sep 11 11:13:11 2018 -0700 @@ -2,14 +2,14 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. /** @file iothub_client_core.h -* @brief Extends the IoTHubCLient_LL module with additional features. +* @brief Extends the IoTHubClientCore_LL module with additional features. * -* @details IoTHubClient is a module that extends the IoTHubCLient_LL -* module with 2 features: -* - scheduling the work for the IoTHubCLient from a -* thread, so that the user does not need to create their -* own thread -* - thread-safe APIs +* @details IoTHubClientCore is a module that extends the IoTHubClientCore_LL +* module with 2 features: +* - scheduling the work for the IoTHubCLient from a +* thread, so that the user does not need to create their +* own thread +* - thread-safe APIs */ #ifndef IOTHUB_CLIENT_CORE_H @@ -60,7 +60,7 @@ #ifdef USE_EDGE_MODULES MOCKABLE_FUNCTION(, IOTHUB_CLIENT_CORE_HANDLE, IoTHubClientCore_CreateFromEnvironment, IOTHUB_CLIENT_TRANSPORT_PROVIDER, protocol); - MOCKABLE_FUNCTION(, IOTHUB_CLIENT_RESULT, IoTHubClientCore_GenericMethodInvoke, IOTHUB_CLIENT_CORE_HANDLE, iotHubClientHandle, const char*, deviceId, const char*, moduleId, const char*, methodName, const char*, methodPayload, unsigned int, timeout, int*, responseStatus, unsigned char**, responsePayload, size_t*, responsePayloadSize); + MOCKABLE_FUNCTION(, IOTHUB_CLIENT_RESULT, IoTHubClientCore_GenericMethodInvoke, IOTHUB_CLIENT_CORE_HANDLE, iotHubClientHandle, const char*, deviceId, const char*, moduleId, const char*, methodName, const char*, methodPayload, unsigned int, timeout, IOTHUB_METHOD_INVOKE_CALLBACK, methodInvokeCallback, void*, context); #endif /* USE_EDGE_MODULES */ #ifdef __cplusplus