X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=fuzzterm.c;h=15b5d63546616fab90c76e5d9f5713d6189e767c;hb=refs%2Fheads%2Fmaster;hp=0da3b68dba969b648b306908780389c09818c392;hpb=984fe3dde809681f91d72152a4f96e91d79a2855;p=PuTTY.git diff --git a/fuzzterm.c b/fuzzterm.c index 0da3b68d..15b5d635 100644 --- a/fuzzterm.c +++ b/fuzzterm.c @@ -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) { }