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

Revision:
17:fa1bba4c6053
Child:
36:7d12a5386197
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/methodreturn.h	Wed Nov 16 21:38:26 2016 -0800
@@ -0,0 +1,37 @@
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+
+#ifndef METHODRETURN_H
+#define METHODRETURN_H
+
+typedef struct METHODRETURN_HANDLE_DATA_TAG* METHODRETURN_HANDLE;
+
+#include "azure_c_shared_utility/macro_utils.h"
+
+/*the following macro expands to "const" if X is defined. If X is not defined, then it expands to nothing*/
+#define CONST_BY_COMPILATION_UNIT(X) IF(COUNT_ARG(X),const,)
+
+typedef struct METHODRETURN_DATA_TAG
+{
+    CONST_BY_COMPILATION_UNIT(METHODRETURN_C) int statusCode;
+    CONST_BY_COMPILATION_UNIT(METHODRETURN_C) char* jsonValue;
+}METHODRETURN_DATA;
+
+#include "azure_c_shared_utility/umock_c_prod.h"
+
+#ifdef __cplusplus
+extern "C" 
+{
+#endif
+
+MOCKABLE_FUNCTION(, METHODRETURN_HANDLE, MethodReturn_Create, int, statusCode, const char*, jsonValue);
+MOCKABLE_FUNCTION(, void, MethodReturn_Destroy, METHODRETURN_HANDLE, handle);
+MOCKABLE_FUNCTION(, const METHODRETURN_DATA*, MethodReturn_GetReturn, METHODRETURN_HANDLE, handle);
+
+#ifdef __cplusplus
+}
+#endif
+
+
+#endif /*METHODRETURN_H*/
+