aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.h
diff options
context:
space:
mode:
authorEli Zaretskii <[email protected]>2011-06-10 13:16:15 +0300
committerEli Zaretskii <[email protected]>2011-06-10 13:16:15 +0300
commit440a42e34c0e31a793cf9b667bc95023e8f987ef (patch)
tree6e7761860f5c080bb759982e268f0595585f92ec /src/window.h
parent562dd5e9532d75d18843a37a1e42a1f4398d4823 (diff)
Avoid compiler warnings about missing prototypes of window.c functions.
src/window.h (resize_frame_windows, resize_window_check) (delete_deletable_window, resize_root_window) (resize_frame_windows): Declare prototypes. src/ window.c (resize_window_apply): Make definition be "static" to match the prototype.
Diffstat (limited to 'src/window.h')
-rw-r--r--src/window.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/window.h b/src/window.h
index c33179de9b..158203dc91 100644
--- a/src/window.h
+++ b/src/window.h
@@ -933,5 +933,12 @@ extern void init_window_once (void);
extern void init_window (void);
extern void syms_of_window (void);
extern void keys_of_window (void);
+extern void resize_frame_windows (struct frame *, int, int);
+extern int resize_window_check (struct window *, int);
+extern Lisp_Object delete_deletable_window (Lisp_Object);
+extern Lisp_Object resize_root_window (Lisp_Object, Lisp_Object, Lisp_Object,
+ Lisp_Object);
+extern void resize_frame_windows (struct frame *, int, int);
+
#endif /* not WINDOW_H_INCLUDED */