2011-05-18 20:33:32 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
|
|
|
|
// Copyright (C) 2011 Gerhard de Koning Gans
|
|
|
|
//
|
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// High frequency iClass support
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef CMDHFICLASS_H__
|
|
|
|
#define CMDHFICLASS_H__
|
|
|
|
|
|
|
|
int CmdHFiClass(const char *Cmd);
|
|
|
|
|
|
|
|
int CmdHFiClassSnoop(const char *Cmd);
|
2012-06-28 21:38:40 +08:00
|
|
|
int CmdHFiClassSim(const char *Cmd);
|
2011-05-18 20:33:32 +08:00
|
|
|
int CmdHFiClassList(const char *Cmd);
|
2012-06-28 21:38:40 +08:00
|
|
|
int CmdHFiClassReader(const char *Cmd);
|
2014-04-15 18:47:01 +08:00
|
|
|
int CmdHFiClassReader_Replay(const char *Cmd);
|
2011-05-18 20:33:32 +08:00
|
|
|
|
|
|
|
#endif
|