X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/be6e909c5bda0ae2d1ff2ea057127e099356c232..a32e8034e04c7f78de2d3345c4ad3d2ce56d38fc:/client/ui.h

diff --git a/client/ui.h b/client/ui.h
index 3417f362..6891a821 100644
--- a/client/ui.h
+++ b/client/ui.h
@@ -16,11 +16,19 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <stdbool.h>
-#include <time.h>
 #include <readline/readline.h>
 #include <pthread.h>
 #include <math.h>
 #include <complex.h>
+
+// Handle platform specific includes
+#ifndef _WIN32
+  #include <sys/time.h>
+#else
+  #include <time.h>
+  #include <windows.h>
+#endif
+
 #include "loclass/cipherutils.h"
 #include "util.h"
 #include "cmdmain.h"
@@ -42,4 +50,5 @@ extern int offline;
 extern int flushAfterWrite;   //buzzy
 
 void iceIIR_Butterworth(int * data, const size_t len);
+void iceSimple_Filter(int *data, const size_t len, uint8_t k);
 #endif