]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - windows/winstuff.h
Change how we handle the Ssh_gss_buf type. Previously, we defined it
[PuTTY.git] / windows / winstuff.h
index 14e20baa75a1bd1e20b43983d5bc150e5a429177..2846fdf055e67bba8f5b9e2f5b686860976968eb 100644 (file)
@@ -108,6 +108,18 @@ 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}
+#endif
+
 /*
  * Window handles for the windows that can be running during a
  * PuTTY session.