]>
Commit | Line | Data |
---|---|---|
a553f267 | 1 | //----------------------------------------------------------------------------- |
212ef3a0 | 2 | // Copyright (C) 2009 Michael Gernoth <michael at gernoth.net> |
a553f267 | 3 | // Copyright (C) 2010 iZsh <izsh at fail0verflow.com> |
4 | // | |
5 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, | |
6 | // at your option, any later version. See the LICENSE.txt file for the text of | |
7 | // the license. | |
8 | //----------------------------------------------------------------------------- | |
9 | // Main binary | |
10 | //----------------------------------------------------------------------------- | |
11 | ||
7fe9b0b7 | 12 | #ifndef PROXMARK3_H__ |
13 | #define PROXMARK3_H__ | |
431ae7e0 | 14 | |
902cb3c0 | 15 | #include "usb_cmd.h" |
16 | ||
7fe9b0b7 | 17 | #define PROXPROMPT "proxmark3> " |
6658905f | 18 | |
5acd195d | 19 | #ifdef __cplusplus |
20 | extern "C" { | |
21 | #endif | |
22 | ||
902cb3c0 | 23 | void SendCommand(UsbCommand *c); |
4a6bc37e | 24 | const char *get_my_executable_path(void); |
25 | const char *get_my_executable_directory(void); | |
5acd195d | 26 | void main_loop(char *script_cmds_file, bool usb_present); |
27 | ||
28 | #ifdef __cplusplus | |
29 | } | |
30 | #endif | |
902cb3c0 | 31 | |
4cd41f34 | 32 | #endif |