2013-05-22 02:37:43 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
2013-05-25 05:05:45 +08:00
|
|
|
// Copyright (C) 2013 m h swende <martin at swende.se>
|
2013-05-22 02:37:43 +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.
|
|
|
|
//-----------------------------------------------------------------------------
|
2013-05-25 05:05:45 +08:00
|
|
|
// Some lua scripting glue to proxmark core.
|
2013-05-22 02:37:43 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef CMDSCRIPT_H__
|
|
|
|
#define CMDSCRIPT_H__
|
|
|
|
|
2019-04-06 06:38:22 +08:00
|
|
|
int CmdScript(const char *Cmd);
|
2013-05-22 02:37:43 +08:00
|
|
|
|
|
|
|
#endif
|