X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/9e43f09ade8a685bd79df0938e3284279d0fee11..995c94dc0331e9410db747ef5a4a580c32cedff8:/client/ui.h

diff --git a/client/ui.h b/client/ui.h
index b5133ab4..6891a821 100644
--- a/client/ui.h
+++ b/client/ui.h
@@ -10,16 +10,25 @@
 
 #ifndef UI_H__
 #define UI_H__
+
 #define _USE_MATH_DEFINES
 #include <stdarg.h>
 #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"
@@ -41,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