R&Y: Added DAY RTA Tapp Card and Additional BKK BEM Stored Value Card AIDs to `aid_de...
[RRG-proxmark3.git] / tools / deprecated-hid-flasher / flasher / proxmark3.h
blobc9e42efd8e826b1b179a330e3c230d0ee8857190
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2009 Michael Gernoth <michael at gernoth.net>
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 //-----------------------------------------------------------------------------
12 #ifndef PROXMARK3_H__
13 #define PROXMARK3_H__
15 #define PROXPROMPT "proxmark3> "
17 #ifdef _MSC_VER
18 typedef DWORD uint32_t;
19 typedef BYTE uint8_t;
20 #define PACKED
21 // stuff
22 #else
23 #include <stdint.h>
24 #include <stdbool.h>
25 #define PACKED __attribute__((packed))
26 #endif
29 #endif