blob: 65ca9d2b8ea5117b5d774833f7440273acf48643 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
#ifndef NFCOMMANDER_VERSION
#define NFCOMMANDER_VERSION "v0.1-dev"
#endif
typedef enum {
system_control,
system_reader,
system_command
} notification_target_t;
int core_manage_fd(int fd, int manage, notification_target_t system);
|