source: azure_iot_hub/trunk/azure_iohub/c-utility/inc/azure_c_shared_utility/connection_string_parser.h@ 388

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

Azure IoT Hub Device C SDK を使ったサンプルの追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-chdr
File size: 991 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 CONNECTION_STRING_PARSER_H
5#define CONNECTION_STRING_PARSER_H
6
7#include "azure_c_shared_utility/umock_c_prod.h"
8#include "azure_c_shared_utility/map.h"
9#include "azure_c_shared_utility/strings.h"
10
11#ifdef __cplusplus
12extern "C"
13{
14#endif
15
16 MOCKABLE_FUNCTION(, MAP_HANDLE, connectionstringparser_parse_from_char, const char*, connection_string);
17 MOCKABLE_FUNCTION(, MAP_HANDLE, connectionstringparser_parse, STRING_HANDLE, connection_string);
18 MOCKABLE_FUNCTION(, int, connectionstringparser_splitHostName_from_char, const char*, hostName, STRING_HANDLE, nameString, STRING_HANDLE, suffixString);
19 MOCKABLE_FUNCTION(, int, connectionstringparser_splitHostName, STRING_HANDLE, hostNameString, STRING_HANDLE, nameString, STRING_HANDLE, suffixString);
20
21#ifdef __cplusplus
22}
23#endif
24
25#endif /* CONNECTION_STRING_PARSER_H */
Note: See TracBrowser for help on using the repository browser.