Extra diagnostics in the hope that we can track down the problem with
[sgt/putty] / putty.h
diff --git a/putty.h b/putty.h
index 856aeb0..06d5d50 100644 (file)
--- a/putty.h
+++ b/putty.h
@@ -242,6 +242,7 @@ typedef struct {
     int logtype;
     int logxfovr;
     int hide_mouseptr;
+    int sunken_edge;
     char answerback[256];
     /* Colour options */
     int try_palette;
@@ -425,7 +426,7 @@ void random_get_savedata(void **data, int *len);
  * Exports from misc.c.
  */
 
-#include "puttymem.h"
+#include "misc.h"
 
 /*
  * Exports from version.c.
@@ -459,11 +460,5 @@ void crypto_wrapup();
 void agent_query(void *in, int inlen, void **out, int *outlen);
 int agent_exists(void);
 
-#ifdef DEBUG
-void dprintf(char *fmt, ...);
-#define debug(x) (dprintf x)
-#else
-#define debug(x)
-#endif
 
 #endif