X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/afdcb8c159a73aba95a017f1cfec98e8fa2b93c1..refs/pull/478/head:/client/cmdmain.h

diff --git a/client/cmdmain.h b/client/cmdmain.h
index a833b41e..d39bc114 100644
--- a/client/cmdmain.h
+++ b/client/cmdmain.h
@@ -15,10 +15,13 @@
 #include <stddef.h>
 #include "usb_cmd.h"
 #include "cmdparser.h"
-#include "comms.h"
-
 
+extern void UsbCommandReceived(UsbCommand *UC);
 extern int CommandReceived(char *Cmd);
+extern bool WaitForResponseTimeoutW(uint32_t cmd, UsbCommand* response, size_t ms_timeout, bool show_warning);
+extern bool WaitForResponseTimeout(uint32_t cmd, UsbCommand* response, size_t ms_timeout);
+extern bool WaitForResponse(uint32_t cmd, UsbCommand* response);
+extern void clearCommandBuffer();
 extern command_t* getTopLevelCommandTable();
 
 #endif