Files
mosquitto/plugins/shared/plugin_shared.h
T

16 lines
269 B
C

#ifndef PLUGIN_SHARED_H
#define PLUGIN_SHARED_H
#include <cjson/cJSON.h>
struct plugin_cmd{
cJSON *j_responses;
cJSON *j_command;
char *correlation_data;
const char *command_name;
};
void plugin__command_reply(struct plugin_cmd *cmd, const char *error);
#endif