2017-11-25 10:29:26 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 2017 Merlok
|
2017-12-06 04:07:03 +08:00
|
|
|
// modified 2017 iceman
|
2017-11-25 10:29:26 +08:00
|
|
|
// 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.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// EMV commands
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef CMDEMV_H__
|
|
|
|
#define CMDEMV_H__
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
2018-12-04 00:16:25 +08:00
|
|
|
int CmdEMV(const char *Cmd);
|
2017-11-25 10:29:26 +08:00
|
|
|
|
2018-12-04 00:16:25 +08:00
|
|
|
#endif
|