#ifndef __MIFARESNIFF_H\r
#define __MIFARESNIFF_H\r
\r
-#include "proxmark3.h"\r
-#include "apps.h"\r
+#include <stdint.h>\r
+#include <stdbool.h>\r
#include "util.h"\r
-#include "string.h"\r
-\r
-#include "iso14443crc.h"\r
-#include "iso14443a.h"\r
-#include "crapto1.h"\r
-#include "mifareutil.h"\r
-#include "common.h"\r
\r
#define SNF_INIT 0\r
-#define SNF_NO_FIELD 1\r
-#define SNF_WUPREQ 2\r
+#define SNF_NO_FIELD 1\r
+#define SNF_WUPREQ 2\r
#define SNF_ATQA 3\r
-#define SNF_ANTICOL1 4\r
+#define SNF_ANTICOL1 4\r
#define SNF_UID1 5\r
-#define SNF_ANTICOL2 6\r
+#define SNF_ANTICOL2 6\r
#define SNF_UID2 7\r
#define SNF_SAK 8\r
-#define SNF_CARD_IDLE 9\r
-#define SNF_CARD_CMD 10\r
-#define SNF_CARD_RESP 11\r
+#define SNF_CARD_IDLE 9\r
+#define SNF_CARD_CMD 10\r
+#define SNF_CARD_RESP 11\r
\r
#define SNF_UID_4 0\r
#define SNF_UID_7 0\r
\r
-int MfSniffInit(void);\r
-int RAMFUNC MfSniffLogic(const uint8_t * data, int len, int bitCnt, int reader);\r
-int RAMFUNC MfSniffSend(int maxTimeoutMs);\r
-int intMfSniffSend();\r
-int MfSniffEnd(void);\r
+bool MfSniffInit(void);\r
+bool RAMFUNC MfSniffLogic(const uint8_t *data, uint16_t len, uint8_t *parity, uint16_t bitCnt, bool reader);\r
+bool RAMFUNC MfSniffSend(uint16_t maxTimeoutMs);\r
+bool intMfSniffSend();\r
+bool MfSniffEnd(void);\r
\r
-#endif
\ No newline at end of file
+#endif\r