aboutsummaryrefslogtreecommitdiffstats
path: root/bindings/tutorials/tuto-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'bindings/tutorials/tuto-1.c')
-rw-r--r--bindings/tutorials/tuto-1.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/bindings/tutorials/tuto-1.c b/bindings/tutorials/tuto-1.c
new file mode 100644
index 00000000..1f58be6c
--- /dev/null
+++ b/bindings/tutorials/tuto-1.c
@@ -0,0 +1,19 @@
+#define AFB_BINDING_VERSION 3
+#include <afb/afb-binding.h>
+
+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
+};
+