X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/db09cb3adbe715b058a64357184e4963a8b6d78e..0923c43cc675b08a295dd531ae0f7c4ed87a1d1d:/client/data.h

diff --git a/client/data.h b/client/data.h
index e3a4cbda..201aba04 100644
--- a/client/data.h
+++ b/client/data.h
@@ -13,11 +13,11 @@
 
 #include <stdint.h>
 
-#define SAMPLE_BUFFER_SIZE 64
+#define FILE_PATH_SIZE 1000
 
-extern uint8_t sample_buf[SAMPLE_BUFFER_SIZE];
+extern uint8_t* sample_buf;
 #define arraylen(x) (sizeof(x)/sizeof((x)[0]))
 
 void GetFromBigBuf(uint8_t *dest, int bytes, int start_index);
-
+void GetEMLFromBigBuf(uint8_t *dest, int bytes, int start_index);
 #endif