]> git.zerfleddert.de Git - proxmark3-svn/blame - client/proxmark3.h
FIX: 'hf mf mifare' - special zero parity attack vector now works. Thanks to the...
[proxmark3-svn] / client / proxmark3.h
CommitLineData
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
be6e909c 15#ifdef __WIN32
16// for MINGW32 environments
17 #define _USE_32BIT_TIME_T 1
18#endif
ce161f56 19#define __STDC_FORMAT_MACROS 1
125a98a1 20#include <inttypes.h>
90639dd1 21#define lx PRIx32
125a98a1 22#define llx PRIx64
1a07fd51 23#define lli PRIi64
ce161f56 24#define llu PRIu64
1a07fd51 25#define hhu PRIu8
125a98a1 26
902cb3c0 27#include "usb_cmd.h"
28
f38a1528 29#define PROXPROMPT "pm3 --> "
6658905f 30
902cb3c0 31void SendCommand(UsbCommand *c);
32
4cd41f34 33#endif
Impressum, Datenschutz