mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-12 04:04:42 +08:00
11 lines
245 B
C
11 lines
245 B
C
#ifndef LIBPM3_H
|
|
#define LIBPM3_H
|
|
|
|
typedef struct pm3_device pm3;
|
|
|
|
pm3 *pm3_open(char *port);
|
|
int pm3_console(pm3 *dev, char *cmd);
|
|
const char *pm3_name_get(pm3 *dev);
|
|
void pm3_close(pm3 *dev);
|
|
pm3 *pm3_get_current_dev(void);
|
|
#endif // LIBPM3_H
|