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

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers iothub_client_version.h Source File

iothub_client_version.h

Go to the documentation of this file.
00001 // Copyright (c) Microsoft. All rights reserved.
00002 // Licensed under the MIT license. See LICENSE file in the project root for full license information.
00003 
00004 /** @file iothub_client_version.h
00005 *   @brief Functions for managing the client SDK version.
00006 */
00007 
00008 #ifndef IOTHUB_CLIENT_VERSION_H
00009 #define IOTHUB_CLIENT_VERSION_H
00010 
00011 #define IOTHUB_SDK_VERSION "1.0.9"
00012 
00013 #ifdef __cplusplus
00014 extern "C"
00015 {
00016 #endif
00017 
00018     /**
00019      * @brief   Returns a pointer to a null terminated string containing the
00020      *          current IoT Hub Client SDK version.
00021      *
00022      * @return  Pointer to a null terminated string containing the
00023      *          current IoT Hub Client SDK version.
00024      */
00025     extern const char* IoTHubClient_GetVersionString(void);
00026 
00027 #ifdef __cplusplus
00028 }
00029 #endif
00030 
00031 #endif // IOTHUB_CLIENT_VERSION_H