source: azure_iot_hub_mbedtls/trunk/azure_iothub/c-utility/inc/azure_c_shared_utility/vector_types.h@ 398

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

mbedTLS版Azure IoT Hub接続サンプルのソースコードを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 442 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 VECTOR_TYPES_H
5#define VECTOR_TYPES_H
6
7#ifdef __cplusplus
8extern "C"
9{
10#else
11#include <stdbool.h>
12#endif
13
14typedef struct VECTOR_TAG* VECTOR_HANDLE;
15
16typedef bool(*PREDICATE_FUNCTION)(const void* element, const void* value);
17
18#ifdef __cplusplus
19}
20#endif
21
22#endif /* VECTOR_TYPES_H */
Note: See TracBrowser for help on using the repository browser.