This commit is contained in:
Jelani 2015-12-04 16:56:54 -08:00
Родитель c871cf9c0c
Коммит 00f9e90597
4 изменённых файлов: 9 добавлений и 9 удалений

Просмотреть файл

@ -10,7 +10,7 @@ Mqtt_Client is the library that encapsulates the [MQTT Protocol](http://mqtt.org
typedef struct MQTTCLIENT_DATA_INSTANCE_TAG* MQTTCLIENT_HANDLE;
#define MQTTCLIENT_ACTION_VALUES \
MQTTCLIENT_ON_CONNACT, \
MQTTCLIENT_ON_CONNACK, \
MQTTCLIENT_ON_SUBSCRIBE, \
MQTTCLIENT_ON_DISCONNECT

Просмотреть файл

@ -4,12 +4,12 @@
#ifndef DATA_BYTE_UTIL_H
#define DATA_BYTE_UTIL_H
#include <stddef.h>
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
#include <cstddef>
extern "C" {
#else
#include <stddef.h>
#endif /* __cplusplus */
#include "mqttconst.h"

Просмотреть файл

@ -18,7 +18,7 @@ extern "C" {
typedef struct MQTTCLIENT_DATA_INSTANCE_TAG* MQTTCLIENT_HANDLE;
#define MQTTCLIENT_ACTION_VALUES \
MQTTCLIENT_ON_CONNACT, \
MQTTCLIENT_ON_CONNACK, \
MQTTCLIENT_ON_SUBSCRIBE, \
MQTTCLIENT_ON_DISCONNECT

Просмотреть файл

@ -4,6 +4,6 @@ azure-mqtt is a general purpose library build for MQTT protocol
## Dependencies
azure-mqtt client use the azure-c-shared-utility, which is a C library provising common functionality for basic tasks (like string, list manipulation, IO, etc.).
azure-mqtt client use the azure-c-shared-utility, which is a C library provisioning common functionality for basic tasks (like string, list manipulation, IO, etc.).
azure-c-shared-utility is available here: https://github.com/Azure/azure-c-shared-utility.
azure-c-shared-utility needs to be built before building uAMQP.
azure-c-shared-utility needs to be built before building azure-mqtt.