diff options
| author | Jason Rumney | 2007-05-15 23:03:48 +0000 |
|---|---|---|
| committer | Jason Rumney | 2007-05-15 23:03:48 +0000 |
| commit | 9e511e9cacc7516f6f8d58e92ddf3749465d4aa9 (patch) | |
| tree | 0e78e7875e7d755eb5aa31d40bc013319fc7cc93 /src | |
| parent | 1c30a66f7a86f87aaa92c3f357b466cdfe101672 (diff) | |
| download | emacs-9e511e9cacc7516f6f8d58e92ddf3749465d4aa9.tar.gz emacs-9e511e9cacc7516f6f8d58e92ddf3749465d4aa9.zip | |
(w32_console_read_socket): Make first arg a frame.
Diffstat (limited to 'src')
| -rw-r--r-- | src/w32inevt.c | 4 | ||||
| -rw-r--r-- | src/w32inevt.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/w32inevt.c b/src/w32inevt.c index b44054afef3..b8c8d65d1b7 100644 --- a/src/w32inevt.c +++ b/src/w32inevt.c | |||
| @@ -643,7 +643,9 @@ maybe_generate_resize_event () | |||
| 643 | } | 643 | } |
| 644 | 644 | ||
| 645 | int | 645 | int |
| 646 | w32_console_read_socket (int sd, int expected, struct input_event *hold_quit) | 646 | w32_console_read_socket (struct terminal *terminal, |
| 647 | int expected, | ||
| 648 | struct input_event *hold_quit) | ||
| 647 | { | 649 | { |
| 648 | BOOL no_events = TRUE; | 650 | BOOL no_events = TRUE; |
| 649 | int nev, ret = 0, add; | 651 | int nev, ret = 0, add; |
diff --git a/src/w32inevt.h b/src/w32inevt.h index f0f7f232261..a3d26848bff 100644 --- a/src/w32inevt.h +++ b/src/w32inevt.h | |||
| @@ -22,7 +22,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 22 | #ifndef EMACS_W32INEVT_H | 22 | #ifndef EMACS_W32INEVT_H |
| 23 | #define EMACS_W32INEVT_H | 23 | #define EMACS_W32INEVT_H |
| 24 | 24 | ||
| 25 | extern int w32_console_read_socket (int sd, int numchars, | 25 | extern int w32_console_read_socket (struct terminal *term, int numchars, |
| 26 | struct input_event *hold_quit); | 26 | struct input_event *hold_quit); |
| 27 | extern void w32_console_mouse_position (FRAME_PTR *f, int insist, | 27 | extern void w32_console_mouse_position (FRAME_PTR *f, int insist, |
| 28 | Lisp_Object *bar_window, | 28 | Lisp_Object *bar_window, |