]> git.eshelyaron.com Git - emacs.git/commitdiff
(w32_console_read_socket): Make first arg a frame.
authorJason Rumney <jasonr@gnu.org>
Tue, 15 May 2007 23:03:48 +0000 (23:03 +0000)
committerJason Rumney <jasonr@gnu.org>
Tue, 15 May 2007 23:03:48 +0000 (23:03 +0000)
src/w32inevt.c
src/w32inevt.h

index b44054afef3a5cfed6f9581d851e9ba922af0095..b8c8d65d1b73dbdf1912d1cabc4fa5d56630df95 100644 (file)
@@ -643,7 +643,9 @@ maybe_generate_resize_event ()
 }
 
 int
-w32_console_read_socket (int sd, int expected, struct input_event *hold_quit)
+w32_console_read_socket (struct terminal *terminal,
+                         int expected,
+                         struct input_event *hold_quit)
 {
   BOOL no_events = TRUE;
   int nev, ret = 0, add;
index f0f7f232261f928927287ead3c6e24ec84b58a26..a3d26848bff57bbc9de3c23ad974a8299edc974b 100644 (file)
@@ -22,7 +22,7 @@ Boston, MA 02110-1301, USA.  */
 #ifndef EMACS_W32INEVT_H
 #define EMACS_W32INEVT_H
 
-extern int w32_console_read_socket (int sd, int numchars,
+extern int w32_console_read_socket (struct terminal *term, int numchars,
                                    struct input_event *hold_quit);
 extern void w32_console_mouse_position (FRAME_PTR *f, int insist,
                                        Lisp_Object *bar_window,