source: azure_iot_hub/trunk/azure_iothub/c-utility/inc/azure_c_shared_utility/vector_types_internal.h

Last change on this file 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: 426 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
13typedef struct VECTOR_TAG
14{
15 void* storage;
16 size_t count;
17 size_t elementSize;
18} VECTOR;
19
20#endif /* VECTOR_TYPES_INTERNAL_H */
Note: See TracBrowser for help on using the repository browser.