Need to stub frontend_keypress() in console.c as well as window.c.
[u/mdw/putty] / putty.h
diff --git a/putty.h b/putty.h
index 646761f..3594ceb 100644 (file)
--- a/putty.h
+++ b/putty.h
@@ -194,7 +194,7 @@ struct backend_tag {
     int (*send) (char *buf, int len);
     /* back->sendbuffer() does the same thing but without attempting a send */
     int (*sendbuffer) (void);
-    void (*size) (void);
+    void (*size) (int width, int height);
     void (*special) (Telnet_Special code);
     Socket(*socket) (void);
     int (*exitcode) (void);
@@ -429,6 +429,7 @@ void beep(int);
 void begin_session(void);
 void sys_cursor(int x, int y);
 void request_paste(void);
+void frontend_keypress(void);
 #define OPTIMISE_IS_SCROLL 1
 
 void set_iconic(int iconic);