mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-06 08:08:53 +08:00
18 lines
304 B
C
18 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) {}
|