| 1 | //-----------------------------------------------------------------------------\r |
| 2 | // Copyright (C) 2011 Merlok\r |
| 3 | //\r |
| 4 | // This code is licensed to you under the terms of the GNU GPL, version 2 or,\r |
| 5 | // at your option, any later version. See the LICENSE.txt file for the text of\r |
| 6 | // the license.\r |
| 7 | //-----------------------------------------------------------------------------\r |
| 8 | // High frequency MIFARE commands\r |
| 9 | //-----------------------------------------------------------------------------\r |
| 10 | \r |
| 11 | #ifndef CMDHFMF_H__\r |
| 12 | #define CMDHFMF_H__\r |
| 13 | \r |
| 14 | #include <stdio.h>\r |
| 15 | #include <stdlib.h>\r |
| 16 | #include <string.h>\r |
| 17 | #include <ctype.h>\r |
| 18 | #include "proxmark3.h"\r |
| 19 | #include "iso14443crc.h"\r |
| 20 | #include "data.h"\r |
| 21 | #include "proxusb.h"\r |
| 22 | #include "ui.h"\r |
| 23 | #include "cmdparser.h"\r |
| 24 | #include "common.h"\r |
| 25 | #include "util.h"\r |
| 26 | #include "mifarehost.h"\r |
| 27 | \r |
| 28 | int CmdHFMF(const char *Cmd);\r |
| 29 | \r |
| 30 | #endif\r |