A modelling and serializer library for Microsoft Azure IoTHub client applications

Dependents:   sht15_remote_monitoring f767zi_mqtt remote_monitoring simplesample_amqp ... more

This library implements a serializer library to be used in projects involving Microsoft Azure IoT Hub connectivity. The code is replicated from https://github.com/Azure/azure-iot-sdks

jsondecoder.h

Committer:
AzureIoTClient
Date:
2018-09-11
Revision:
36:7d12a5386197
Parent:
17:fa1bba4c6053

File content as of revision 36:7d12a5386197:

// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

#ifndef JSONDECODER_H
#define JSONDECODER_H

#include "multitree.h"

#ifdef __cplusplus
#include <cstddef>
extern "C" {
#else
#include <stddef.h>
#endif

typedef enum JSON_DECODER_RESULT_TAG
{
    JSON_DECODER_OK,
    JSON_DECODER_INVALID_ARG,
    JSON_DECODER_PARSE_ERROR,
    JSON_DECODER_MULTITREE_FAILED,
    JSON_DECODER_ERROR
} JSON_DECODER_RESULT;

#include "azure_c_shared_utility/umock_c_prod.h"
MOCKABLE_FUNCTION(, JSON_DECODER_RESULT, JSONDecoder_JSON_To_MultiTree, char*, json, MULTITREE_HANDLE*, multiTreeHandle);

#ifdef __cplusplus
}
#endif

#endif /* JSONDECODER_H */