X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/facd762ca8b5eb6cad4171cb3deb2f3ef2957dc0..f6fc00103fd047abc6c707db8912d3e71c336481:/winstuff.h diff --git a/winstuff.h b/winstuff.h index e2d700ee..1aa68bb7 100644 --- a/winstuff.h +++ b/winstuff.h @@ -89,6 +89,15 @@ GLOBAL void *logctx; #define SEL_NL { 13, 10 } /* + * sk_getxdmdata() does not exist under Windows (not that I + * couldn't write it if I wanted to, but I haven't bothered), so + * it's a macro which always returns FALSE. With any luck this will + * cause the compiler to notice it can optimise away the + * implementation of XDM-AUTHORIZATION-1 in x11fwd.c :-) + */ +#define sk_getxdmdata(socket, ip, port) (0) + +/* * Exports from winctrls.c. */ @@ -192,6 +201,7 @@ void EnableSizeTip(int bEnable); /* * Exports from unicode.c. */ -void init_ucs(void); +struct unicode_data; +void init_ucs(Config *, struct unicode_data *); #endif