move strucrture to .h file

This commit is contained in:
merlokk 2017-10-31 16:25:42 +02:00
commit a23f000182
2 changed files with 6 additions and 7 deletions

View file

@ -31,6 +31,12 @@
#include "cmdhfmfu.h"
#include "mifarehost.h"
// structure and database for uid -> tagtype lookups
typedef struct {
uint8_t uid;
char* desc;
} manufactureName;
int CmdHF14A(const char *Cmd);
int CmdHF14AList(const char *Cmd);
int CmdHF14AMifare(const char *Cmd);