Need to stub frontend_keypress() in console.c as well as window.c.
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Thu, 24 Oct 2002 14:48:08 +0000 (14:48 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Thu, 24 Oct 2002 14:48:08 +0000 (14:48 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@2126 cda61777-01e9-0310-a592-d414129be87e

console.c

index e49eaa0..80bca3c 100644 (file)
--- a/console.c
+++ b/console.c
@@ -303,3 +303,11 @@ int console_get_line(const char *prompt, char *str,
     }
     return 1;
 }
+
+void frontend_keypress(void)
+{
+    /*
+     * This is nothing but a stub, in console code.
+     */
+    return;
+}