# HG changeset patch # User Kim F. Storm # Date 1069967532 0 # Node ID 83fb165444f9774e46e800dce81d564cd3ebad1a # Parent 5f50db6e04c6e91675aeeaf7aa61f79659acf38c (buffer_posn_from_coords, mode_line_string) (marginal_area_string): Fix prototypes. (window_box_left_offset, window_box_right_offset): Add prototypes. diff -r 5f50db6e04c6 -r 83fb165444f9 src/dispextern.h --- a/src/dispextern.h Wed Nov 26 19:23:58 2003 +0000 +++ b/src/dispextern.h Thu Nov 27 21:12:12 2003 +0000 @@ -2454,7 +2454,9 @@ int window_text_bottom_y P_ ((struct window *)); int window_box_width P_ ((struct window *, int)); int window_box_left P_ ((struct window *, int)); +int window_box_left_offset P_ ((struct window *, int)); int window_box_right P_ ((struct window *, int)); +int window_box_right_offset P_ ((struct window *, int)); void window_box_edges P_ ((struct window *, int, int *, int *, int *, int *)); int estimate_mode_line_height P_ ((struct frame *, enum face_id)); void pixel_to_glyph_coords P_ ((struct frame *, int, int, int *, int *, @@ -2663,8 +2665,10 @@ extern int required_matrix_width P_ ((struct window *)); extern int required_matrix_height P_ ((struct window *)); extern Lisp_Object mode_line_string P_ ((struct window *, int *, int *, + int *, int *, enum window_part, int *)); extern Lisp_Object marginal_area_string P_ ((struct window *, int *, int *, + int *, int *, enum window_part, int *)); extern void redraw_frame P_ ((struct frame *)); extern void redraw_garbaged_frames P_ ((void)); @@ -2707,6 +2711,7 @@ void update_single_window P_ ((struct window *, int)); int scrolling P_ ((struct frame *)); void buffer_posn_from_coords P_ ((struct window *, int *, int *, + int *, int *, Lisp_Object *, struct display_pos *)); void do_pending_window_change P_ ((int)); void change_frame_size P_ ((struct frame *, int, int, int, int, int));