diff options
| author | Geoff Voelker | 1998-04-29 04:36:27 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1998-04-29 04:36:27 +0000 |
| commit | 543b3f021abd29bd87d75bcb9749350600234ddb (patch) | |
| tree | 0c7ed579b0b75270e64b25eca1384a999c13c46b | |
| parent | 81e3e4fd09c48af572217c4f6a99ea9051319a74 (diff) | |
| download | emacs-543b3f021abd29bd87d75bcb9749350600234ddb.tar.gz emacs-543b3f021abd29bd87d75bcb9749350600234ddb.zip | |
(w32_console_mouse_position, w32_console_read_socket):
Declare with full function prototypes.
| -rw-r--r-- | src/w32inevt.h | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/w32inevt.h b/src/w32inevt.h index 1ff9cff793f..df94f910371 100644 --- a/src/w32inevt.h +++ b/src/w32inevt.h | |||
| @@ -21,13 +21,12 @@ Boston, MA 02111-1307, USA. */ | |||
| 21 | #ifndef __NTINEVT_H__ | 21 | #ifndef __NTINEVT_H__ |
| 22 | #define __NTINEVT_H__ | 22 | #define __NTINEVT_H__ |
| 23 | 23 | ||
| 24 | int w32_console_read_socket (/* int sd, struct input_event *bufp, int numchars, | 24 | extern int w32_console_read_socket (int sd, struct input_event *bufp, |
| 25 | int waitp, int expected */); | 25 | int numchars, int expected); |
| 26 | void w32_mouse_position (/* FRAME_PTR *f, | 26 | extern void w32_console_mouse_position (FRAME_PTR *f, int insist, |
| 27 | Lisp_Object *bar_window, | 27 | Lisp_Object *bar_window, |
| 28 | enum scroll_bar_part *part, | 28 | enum scroll_bar_part *part, |
| 29 | Lisp_Object *x, | 29 | Lisp_Object *x, Lisp_Object *y, |
| 30 | Lisp_Object *y, | 30 | unsigned long *time); |
| 31 | unsigned long *time */); | ||
| 32 | 31 | ||
| 33 | #endif | 32 | #endif |