summaryrefslogtreecommitdiff
path: root/src/split.h
diff options
context:
space:
mode:
authorsabetts <sabetts>2003-05-15 06:57:09 +0000
committersabetts <sabetts>2003-05-15 06:57:09 +0000
commit2d8945e4ee37ceee9d58e91681c6d3722a83c956 (patch)
treed996cd52065ba42dbcfb0089934303a8c604aa35 /src/split.h
parent0271c6daa38124232902a976e082a9b21dcc7043 (diff)
downloadratpoison-2d8945e4ee37ceee9d58e91681c6d3722a83c956.zip
(struct rp_screen): rename from
screen_info. Dependant code updated.
Diffstat (limited to 'src/split.h')
-rw-r--r--src/split.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/split.h b/src/split.h
index 53661b0..cf308ae 100644
--- a/src/split.h
+++ b/src/split.h
@@ -22,7 +22,7 @@
#ifndef SPLIT_H
#define SPLIT_H
-int num_frames (screen_info *s);
+int num_frames (rp_screen *s);
rp_window *set_frames_window (rp_window_frame *frame, rp_window *win);
void cleanup_frame (rp_window_frame *frame);
void maximize_all_windows_in_frame (rp_window_frame *frame);
@@ -39,7 +39,7 @@ rp_window_frame *find_frame_next (rp_window_frame *frame);
rp_window_frame *find_frame_prev (rp_window_frame *frame);
rp_window *current_window ();
void init_frame_lists ();
-void init_frame_list (screen_info *screen);
+void init_frame_list (rp_screen *screen);
void set_active_frame (rp_window_frame *frame);
void blank_frame (rp_window_frame *frame);
void show_frame_indicator ();
@@ -51,8 +51,8 @@ rp_window_frame *find_frame_right (rp_window_frame *frame);
rp_window_frame *find_frame_left (rp_window_frame *frame);
rp_window_frame *find_frame_down (rp_window_frame *frame);
rp_window_frame *find_frame_up (rp_window_frame *frame);
-rp_window_frame *find_last_frame (screen_info *s);
-rp_window_frame *find_frame_number (screen_info *s, int num);
+rp_window_frame *find_last_frame (rp_screen *s);
+rp_window_frame *find_frame_number (rp_screen *s, int num);
rp_window_frame *current_frame ();