remove unused 'next' pointers
[librfid] / include / librfid / rfid_scan.h
1 #ifndef _RFID_SCAN_H
2 #define _RFID_SCAN_H
3
4 #include <librfid/rfid_reader.h>
5 #include <librfid/rfid_layer2.h>
6 #include <librfid/rfid_protocol.h>
7
8 struct rfid_layer2_handle *
9 rfid_layer2_scan(struct rfid_reader_handle *rh);
10
11 struct rfid_protocol_handle *
12 rfid_protocol_scan(struct rfid_layer2_handle *l2h);
13
14 int rfid_scan(struct rfid_reader_handle *rh,
15               struct rfid_layer2_handle **l2h,
16               struct rfid_protocol_handle **ph);
17
18 #endif /* _RFID_SCAN_H */