source: azure_iot_hub_f767zi/trunk/azure_iot_sdk/provisioning_client/inc/azure_prov_client/prov_transport_mqtt_client.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: 667 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 PROV_TRANSPORT_MQTT_CLIENT_H
5#define PROV_TRANSPORT_MQTT_CLIENT_H
6
7#ifdef __cplusplus
8extern "C" {
9#include <cstdint>
10#include <cstddef>
11#else
12#include <stdint.h>
13#include <stddef.h>
14#endif /* __cplusplus */
15
16#include "umock_c/umock_c_prod.h"
17#include "azure_macro_utils/macro_utils.h"
18#include "azure_prov_client/prov_transport.h"
19
20MOCKABLE_FUNCTION(, const PROV_DEVICE_TRANSPORT_PROVIDER*, Prov_Device_MQTT_Protocol);
21
22#ifdef __cplusplus
23}
24#endif /* __cplusplus */
25
26#endif // PROV_TRANSPORT_MQTT_CLIENT_H
Note: See TracBrowser for help on using the repository browser.