| 1 | //----------------------------------------------------------------------------- |
| 2 | // (c) 2009 Henryk Plötz <henryk@ploetzli.ch> |
| 3 | // |
| 4 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, |
| 5 | // at your option, any later version. See the LICENSE.txt file for the text of |
| 6 | // the license. |
| 7 | //----------------------------------------------------------------------------- |
| 8 | // LEGIC RF emulation public interface |
| 9 | //----------------------------------------------------------------------------- |
| 10 | |
| 11 | #ifndef __LEGICRF_H |
| 12 | #define __LEGICRF_H |
| 13 | |
| 14 | extern void LegicRfSimulate(int phase, int frame, int reqresp); |
| 15 | extern int LegicRfReader(int bytes, int offset); |
| 16 | extern void LegicRfWriter(int bytes, int offset); |
| 17 | |
| 18 | #endif /* __LEGICRF_H */ |