mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-02-19 00:36:05 +08:00
11 lines
316 B
C
11 lines
316 B
C
#ifndef LIBPM3_H
|
|
#define LIBPM3_H
|
|
|
|
typedef struct pm3_device pm3_device;
|
|
|
|
pm3_device* pm3_open(char *port);
|
|
int pm3_device_console(pm3_device* dev, char *cmd);
|
|
const char * pm3_device_name_get(pm3_device* dev);
|
|
void pm3_device_close(pm3_device* dev);
|
|
pm3_device* pm3_device_get_current_dev(void);
|
|
#endif // LIBPM3_H
|