source: azure_iot_hub/trunk/azure_iothub/iothub_client/inc/iothub_client_version.h@ 389

Last change on this file since 389 was 389, checked in by coas-nagasima, 5 years ago

ビルドが通るよう更新

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 844 bytes
Line 
1// Copyright (c) Microsoft. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3
4/** @file iothub_client_version.h
5* @brief Functions for managing the client SDK version.
6*/
7
8#ifndef IOTHUB_CLIENT_VERSION_H
9#define IOTHUB_CLIENT_VERSION_H
10
11#define IOTHUB_SDK_VERSION "1.3.1"
12
13#include "azure_c_shared_utility/umock_c_prod.h"
14
15#ifdef __cplusplus
16extern "C"
17{
18#endif
19
20 /**
21 * @brief Returns a pointer to a null terminated string containing the
22 * current IoT Hub Client SDK version.
23 *
24 * @return Pointer to a null terminated string containing the
25 * current IoT Hub Client SDK version.
26 */
27 MOCKABLE_FUNCTION(, const char*, IoTHubClient_GetVersionString);
28
29#ifdef __cplusplus
30}
31#endif
32
33#endif // IOTHUB_CLIENT_VERSION_H
Note: See TracBrowser for help on using the repository browser.