]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - fuzzterm.c
Unix buildinfo: stop saying 'GTK' in pure CLI utilities.
[PuTTY.git] / fuzzterm.c
index 0da3b68dba969b648b306908780389c09818c392..15b5d63546616fab90c76e5d9f5713d6189e767c 100644 (file)
@@ -6,6 +6,9 @@
 #include "putty.h"
 #include "terminal.h"
 
+/* For Unix in particular, but harmless if this main() is reused elsewhere */
+const int buildinfo_gtk_relevant = FALSE;
+
 int main(int argc, char **argv)
 {
        char blk[512];
@@ -97,6 +100,7 @@ int is_iconic(void *frontend) { return 0; }
 void get_window_pos(void *frontend, int *x, int *y) { *x = 0; *y = 0; }
 void get_window_pixels(void *frontend, int *x, int *y) { *x = 0; *y = 0; }
 char *get_window_title(void *frontend, int icon) { return "moo"; }
+int frontend_is_utf8(void *frontend) { return TRUE; }
 
 /* needed by timing.c */
 void timer_change_notify(unsigned long next) { }