Skip to content
Snippets Groups Projects
Commit 541bc230 authored by Sven Gestegård Robertz's avatar Sven Gestegård Robertz
Browse files

added handler for avoid in examples/simple/

parent 537bdbc6
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,10 @@
#include "gen/simple.h"
#include <stdio.h>
static void handle_simple_doavoid(simple_doavoid *v, void *context) {
printf("Got a void.\n");
}
static void handle_simple_theTwoInts(simple_TwoInts *v,void *context) {
printf("Got theTwoInts. a=%d, b=%d\n", v->a, v->b);
}
......@@ -69,6 +73,7 @@ int main(int argc, char *argv[]) {
return 1;
}
labcomm_decoder_register_simple_doavoid(decoder, handle_simple_doavoid, context);
labcomm_decoder_register_simple_theTwoInts(decoder, handle_simple_theTwoInts, context);
labcomm_decoder_register_simple_anotherTwoInts(decoder, handle_simple_anotherTwoInts, context);
labcomm_decoder_register_simple_IntString(decoder, handle_simple_IntString, context);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment