mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-07 00:28:07 +08:00
12 lines
246 B
C
12 lines
246 B
C
/*
|
|
* LEGIC RF emulation public interface
|
|
*
|
|
* (c) 2009 Henryk Plötz <henryk@ploetzli.ch>
|
|
*/
|
|
|
|
#ifndef LEGICRF_H_
|
|
#define LEGICRF_H_
|
|
|
|
extern void LegicRfSimulate(void);
|
|
extern void LegicRfReader(int bytes, int offset);
|
|
#endif /* LEGICRF_H_ */
|