X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/a553f2674865fa544d04ca7b8194e30c008644ae..eabbb166f06996c5f8a04166f9a9e934195e85af:/client/cmdmain.h diff --git a/client/cmdmain.h b/client/cmdmain.h index edd0205f..0de3f392 100644 --- a/client/cmdmain.h +++ b/client/cmdmain.h @@ -11,10 +11,16 @@ #ifndef CMDMAIN_H__ #define CMDMAIN_H__ +#include +#include #include "usb_cmd.h" +#include "cmdparser.h" -void UsbCommandReceived(UsbCommand *UC); -void CommandReceived(char *Cmd); -void WaitForResponse(uint32_t response_type); +extern void UsbCommandReceived(UsbCommand *UC); +extern int CommandReceived(char *Cmd); +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