From d4ed9b98b766ee2f5b44278cc00fbec21cd36b41 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Mon, 4 Dec 2017 17:21:14 +0100 Subject: Remove old controller submodule Change-Id: I8768bc2663884b8043ad9565e8cbb62c4ba78070 Signed-off-by: Romain Forlot --- controller/ctl-plugin.h | 84 ------------------------------------------------- 1 file changed, 84 deletions(-) delete mode 100644 controller/ctl-plugin.h (limited to 'controller/ctl-plugin.h') diff --git a/controller/ctl-plugin.h b/controller/ctl-plugin.h deleted file mode 100644 index 4b8bd26..0000000 --- a/controller/ctl-plugin.h +++ /dev/null @@ -1,84 +0,0 @@ -/* - * Copyright (C) 2016 "IoT.bzh" - * Author Fulup Ar Foll - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, something express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - */ - - -#ifndef _CTL_PLUGIN_INCLUDE_ -#define _CTL_PLUGIN_INCLUDE_ - -#ifdef __cplusplus -extern "C" { -#endif - -#ifndef _GNU_SOURCE -#define _GNU_SOURCE -#endif - -#include - -#ifndef CTL_PLUGIN_MAGIC - #define CTL_PLUGIN_MAGIC 852369147 -#endif - -#ifndef STATIC - #define STATIC static -#endif - -#ifndef UNUSED_ARG - #define UNUSED_ARG(x) UNUSED_ ## x __attribute__((__unused__)) - #define UNUSED_FUNCTION(x) __attribute__((__unused__)) UNUSED_ ## x -#endif - -typedef struct luaL_Reg luaL_Reg; - -typedef struct { - const char *label; - const char *info; - afb_req request; - void *context; -} CtlSourceT; - -typedef struct { - long magic; - const char *label; - void *handle; -} CtlPluginMagicT; - -typedef struct { - const char *label; - const char *info; - const char *version; - void *context; - void *dlHandle; -#ifdef CONTROL_SUPPORT_LUA - luaL_Reg *l2cFunc; - int l2cCount; -#endif -} CtlPluginT; - -typedef void*(*DispatchPluginInstallCbT)(CtlPluginT *plugin, void* handle); - -#define MACRO_STR_VALUE(arg) #arg -#define CTLP_REGISTER(pluglabel) CtlPluginMagicT CtlPluginMagic={.magic=CTL_PLUGIN_MAGIC,.label=pluglabel,.handle=NULL}; struct afb_binding_data_v2; -#define CTLP_ONLOAD(plugin, handle) void* CtlPluginOnload(CtlPluginT *plugin, void* handle) -#define CTLP_CAPI(funcname, source, argsJ, queryJ, context) int funcname(CtlSourceT *source, json_object* argsJ, json_object* queryJ, void* context) - -#ifdef __cplusplus -} -#endif - -#endif /* _CTL_PLUGIN_INCLUDE_ */ -- cgit 1.2.3-korg