mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
53d5dc643f
Added a lot of #ifndef , extern C, Move inside from ARMSRC -> THUMBS, which made the compiled image smaller.. I don't know if it broke anything. Moved MF_DBGLEVEL definitions into common.h Moved print_result from util.c into appmain.c Also split up some struct typedef into header files so they could be reused in other code places. ''' danger ''' this might have broken stuff...
14 lines
275 B
C
14 lines
275 B
C
#ifndef __MIFAREDESFIRE_H
|
|
#define __MIFAREDESFIRE_H
|
|
|
|
#include "common.h"
|
|
#include "proxmark3.h"
|
|
#include "apps.h"
|
|
#include "string.h"
|
|
#include "BigBuf.h"
|
|
#include "iso14443crc.h"
|
|
#include "iso14443a.h"
|
|
#include "desfire_key.h"
|
|
#include "mifareutil.h"
|
|
#include "des.h"
|
|
#endif
|