mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-08-26 02:59:35 +08:00
16 lines
269 B
C
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
|