From 6b2b09db8ee3cf88b09b59696d50b4fa2de79a72 Mon Sep 17 00:00:00 2001 From: José Bollo Date: Thu, 11 Apr 2019 13:09:56 +0200 Subject: Reordering of sample and tutorial bindings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The main idea here is to install the sample and tutorial bindings in specific directory. This will at the end help to package parts of the binder. It also includes a simplification of CMakeLists files. Also fix an error in packaging rpm. Bug-AGL: SPEC-2165 Change-Id: I494cc753796848cde849de1c3596893c78fa228f Signed-off-by: José Bollo --- bindings/tutorial/tuto-1.c | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 bindings/tutorial/tuto-1.c (limited to 'bindings/tutorial/tuto-1.c') diff --git a/bindings/tutorial/tuto-1.c b/bindings/tutorial/tuto-1.c deleted file mode 100644 index 1f58be6c..00000000 --- a/bindings/tutorial/tuto-1.c +++ /dev/null @@ -1,19 +0,0 @@ -#define AFB_BINDING_VERSION 3 -#include - -void hello(afb_req_t req) -{ - AFB_REQ_DEBUG(req, "hello world"); - afb_req_reply(req, NULL, NULL, "hello world"); -} - -const afb_verb_t verbs[] = { - { .verb="hello", .callback=hello }, - { .verb=NULL } -}; - -const afb_binding_t afbBindingExport = { - .api = "tuto-1", - .verbs = verbs -}; - -- cgit 1.2.3-korg