Mercurial > emacs
diff src/window.h @ 20349:6ab8801244c2
Add prototypes.
| author | Andreas Schwab <schwab@suse.de> |
|---|---|
| date | Tue, 25 Nov 1997 13:44:34 +0000 |
| parents | 39aa8dd49637 |
| children | 524d1cfb6913 |
line wrap: on
line diff
--- a/src/window.h Tue Nov 25 13:38:04 1997 +0000 +++ b/src/window.h Tue Nov 25 13:44:34 1997 +0000 @@ -265,13 +265,20 @@ /* Last mouse-click event (nil if no mouse support). */ extern Lisp_Object Vmouse_event; -extern Lisp_Object Fnext_window (); -extern Lisp_Object Fselect_window (); -extern Lisp_Object Fdisplay_buffer (); -extern Lisp_Object Fset_window_buffer (); -extern Lisp_Object make_window (); -extern Lisp_Object window_from_coordinates (); -extern Lisp_Object Fwindow_dedicated_p (); +EXFUN (Fnext_window, 3); +EXFUN (Fselect_window, 1); +EXFUN (Fdisplay_buffer, 2); +EXFUN (Fset_window_buffer, 2); +extern Lisp_Object make_window P_ ((void)); +extern void delete_window P_ ((Lisp_Object)); +extern Lisp_Object window_from_coordinates P_ ((struct frame *, int, int, int *)); +EXFUN (Fwindow_dedicated_p, 1); +extern int window_height P_ ((Lisp_Object)); +extern int window_width P_ ((Lisp_Object)); +extern void set_window_height P_ ((Lisp_Object, int, int)); +extern void set_window_width P_ ((Lisp_Object, int, int)); +extern void change_window_height P_ ((int, int)); +extern void delete_all_subwindows P_ ((struct window *)); /* Prompt to display in front of the minibuffer contents. */ extern Lisp_Object minibuf_prompt; @@ -340,4 +347,4 @@ /* If *ROWS or *COLS are too small a size for FRAME, set them to the minimum allowable size. */ -extern void check_frame_size ( /* FRAME_PTR frame, int *rows, int *cols */ ); +extern void check_frame_size P_ ((struct frame *frame, int *rows, int *cols));
