added the possibility to show NDEF messages with vCard that has a base64 image to be viewed

This commit is contained in:
iceman1001
2022-01-15 17:38:40 +01:00
parent 093e6a72bf
commit aed07db1f7
7 changed files with 113 additions and 5 deletions
+8
View File
@@ -38,6 +38,14 @@ extern "C" void ShowPictureWindow(char *fn) {
warned = 1;
}
}
extern "C" void ShowBase64PictureWindow(char *b64) {
static int warned = 0;
if (!warned) {
printf("No GUI in this build!\n");
warned = 1;
}
}
extern "C" void HidePictureWindow(void) {}
extern "C" void RepaintPictureWindow(void) {}