X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/c6940f12e2ad6ba778324f50b9a779db36238518..1c51badd393b183d62b45a9a83db56e0b0601086:/windows/winstuff.h diff --git a/windows/winstuff.h b/windows/winstuff.h index 14e20baa..64f3232d 100644 --- a/windows/winstuff.h +++ b/windows/winstuff.h @@ -36,6 +36,9 @@ struct FontSpec { (fq) == FQ_NONANTIALIASED ? NONANTIALIASED_QUALITY : \ CLEARTYPE_QUALITY) +#define PLATFORM_IS_UTF16 /* enable UTF-16 processing when exchanging + * wchar_t strings with environment */ + /* * Where we can, we use GetWindowLongPtr and friends because they're * more useful on 64-bit platforms, but they're a relatively recent @@ -108,6 +111,19 @@ typedef struct terminal_tag Terminal; typedef HDC Context; +#ifndef NO_GSSAPI +/* + * GSS-API stuff + */ +typedef struct Ssh_gss_buf { + int length; + char *value; +} Ssh_gss_buf; + +#define SSH_GSS_EMPTY_BUF (Ssh_gss_buf) {0,NULL} +typedef void *Ssh_gss_name; +#endif + /* * Window handles for the windows that can be running during a * PuTTY session.