X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/a877bc2f01e6430547787411f805eaedef0d7112..57778a46308a250f4c9b1516aa8ca251d4e09cc5:/client/proxmark3.h

diff --git a/client/proxmark3.h b/client/proxmark3.h
index 2c881042..6874f9d8 100644
--- a/client/proxmark3.h
+++ b/client/proxmark3.h
@@ -8,14 +8,15 @@
 //-----------------------------------------------------------------------------
 // Main binary
 //-----------------------------------------------------------------------------
-
 #ifndef PROXMARK3_H__
 #define PROXMARK3_H__
 
 // Handle platform specific includes
 #ifdef _WIN32
 // for MINGW32 environments
-  #define _USE_32BIT_TIME_T 1
+  #ifndef _USE_32BIT_TIME_T
+    #define _USE_32BIT_TIME_T 1
+  #endif  
   #include <time.h>
   #include <windows.h>
 #else
@@ -26,14 +27,10 @@
 #include <inttypes.h>
 #include "usb_cmd.h"
 
-#define lu PRIu32
-#define lx  PRIx32
-#define llx PRIx64
-#define lli PRIi64
-#define llu PRIu64
-#define hhu PRIu8
 #define PROXPROMPT "pm3 --> "
 
 void SendCommand(UsbCommand *c);
+const char *get_my_executable_path(void);
+const char *get_my_executable_directory(void);
 
-#endif
+#endif
\ No newline at end of file