diff options
author | Loïc Collignon <loic.collignon@iot.bzh> | 2017-10-23 10:51:37 +0200 |
---|---|---|
committer | Loïc Collignon <loic.collignon@iot.bzh> | 2017-10-23 10:51:37 +0200 |
commit | 44096523e0c45c6b02840f2fe2aca337510fac28 (patch) | |
tree | dc9c7b2be0750c011fd7c581df65f7b2e0a9ec16 /src/libnfc_reader.h | |
parent | 5441251cae0eea3786c327b3b3386eae5bf687db (diff) |
add nfc binding
Change-Id: I1ebf8e803436430490201db533c2a5a04c04295e
Signed-off-by: Loïc Collignon <loic.collignon@iot.bzh>
Diffstat (limited to 'src/libnfc_reader.h')
-rw-r--r-- | src/libnfc_reader.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/libnfc_reader.h b/src/libnfc_reader.h new file mode 100644 index 0000000..1209fda --- /dev/null +++ b/src/libnfc_reader.h @@ -0,0 +1,12 @@ +#pragma once + +#include <json-c/json.h> + +#define EXIT_LIBNFC_SUCCESS 0 +#define EXIT_LIBNFC_NOT_INITIALIZED 1 +#define EXIT_LIBNFC_NO_DEVICE_FOUND 2 + +int libnfc_init(); +int libnfc_list_devices(struct json_object* result); +int libnfc_list_devices_capabilities(struct json_object* result, struct json_object* devices); +int libnfc_start_polling(struct json_object* result, struct json_object* devices); |