source: azure_iot_hub_f767zi/trunk/azure_iot_sdk/c-utility/inc/azure_c_shared_utility/vector_types_internal.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: 519 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_INTERNAL_H
5#define VECTOR_TYPES_INTERNAL_H
6
7#ifdef __cplusplus
8#include <cstddef>
9#else
10#include <stddef.h>
11#endif
12
13#ifdef __cplusplus
14extern "C"
15{
16#endif
17
18 typedef struct VECTOR_TAG
19 {
20 void* storage;
21 size_t count;
22 size_t elementSize;
23 } VECTOR;
24
25#ifdef __cplusplus
26}
27#endif
28
29#endif /* VECTOR_TYPES_INTERNAL_H */
Note: See TracBrowser for help on using the repository browser.