mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-11 18:17:46 +08:00
17 lines
304 B
C
17 lines
304 B
C
#include <stdio.h>
|
|
|
|
void ShowGraphWindow(void)
|
|
{
|
|
static int warned = 0;
|
|
|
|
if (!warned) {
|
|
printf("No GUI in this build!\n");
|
|
warned = 1;
|
|
}
|
|
}
|
|
|
|
void HideGraphWindow(void) {}
|
|
void RepaintGraphWindow(void) {}
|
|
void MainGraphics() {}
|
|
void InitGraphics(int argc, char **argv) {}
|
|
void ExitGraphics(void) {}
|