mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
add PrintAndLogEx()
This commit is contained in:
parent
a1dd7c2020
commit
5ea8b4348c
2 changed files with 23 additions and 0 deletions
|
@ -28,11 +28,15 @@
|
|||
#ifndef M_PI
|
||||
#define M_PI 3.14159265358979323846264338327
|
||||
#endif
|
||||
#define MAX_PRINT_BUFFER 2048
|
||||
typedef enum logLevel {NORMAL, INFO, WARNING, ERR, DEBUG} logLevel_t;
|
||||
|
||||
void ShowGui(void);
|
||||
void HideGraphWindow(void);
|
||||
void ShowGraphWindow(void);
|
||||
void RepaintGraphWindow(void);
|
||||
extern void PrintAndLog(char *fmt, ...);
|
||||
void PrintAndLogEx(logLevel_t level, char *filename, int lineno, char *func, char *fmt, ...);
|
||||
extern void SetLogFilename(char *fn);
|
||||
|
||||
extern double CursorScaleFactor;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue