blob: 8599a132d51f3e5c86fa4d369fd0fbd6f4f822f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
extern "C"
{
#define AFB_BINDING_VERSION 2
#include <afb/afb-binding.h>
}
void onEvent(const char *event, struct json_object *object);
int loadConf();
int execConf();
|