source: azure_iot_hub_f767zi/trunk/azure_iot_sdk/iothub_client/inc/iothub.h@ 457

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

ファイルを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 696 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#ifndef IOTHUB_H
5#define IOTHUB_H
6
7#include "umock_c/umock_c_prod.h"
8
9#ifdef __cplusplus
10extern "C"
11{
12#else
13#endif
14 /**
15 * @brief IoTHubClient_Init Initializes the IoTHub Client System.
16 *
17 * @return int zero upon success, any other value upon failure.
18 */
19 MOCKABLE_FUNCTION(, int, IoTHub_Init);
20
21 /**
22 * @brief IoTHubClient_Deinit Frees resources initialized in the IoTHubClient_Init function call.
23 *
24 */
25 MOCKABLE_FUNCTION(, void, IoTHub_Deinit);
26
27#ifdef __cplusplus
28}
29#endif
30
31#endif /* IOTHUB_H */
Note: See TracBrowser for help on using the repository browser.