summaryrefslogtreecommitdiff
path: root/src/screen.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/screen.h
parent0271c6daa38124232902a976e082a9b21dcc7043 (diff)
downloadratpoison-2d8945e4ee37ceee9d58e91681c6d3722a83c956.zip
(struct rp_screen): rename from
screen_info. Dependant code updated.
Diffstat (limited to 'src/screen.h')
-rw-r--r--src/screen.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/screen.h b/src/screen.h
index 5b0bbc2..614bb04 100644
--- a/src/screen.h
+++ b/src/screen.h
@@ -21,16 +21,16 @@
#ifndef SCREEN_H
#define SCREEN_H
-int screen_bottom (screen_info *s);
-int screen_top (screen_info *s);
-int screen_right (screen_info *s);
-int screen_left (screen_info *s);
-int screen_height (screen_info *s);
-int screen_width (screen_info *s);
+int screen_bottom (rp_screen *s);
+int screen_top (rp_screen *s);
+int screen_right (rp_screen *s);
+int screen_left (rp_screen *s);
+int screen_height (rp_screen *s);
+int screen_width (rp_screen *s);
-struct list_head *screen_copy_frameset (screen_info *s);
-void screen_restore_frameset (screen_info *s, struct list_head *head);
+struct list_head *screen_copy_frameset (rp_screen *s);
+void screen_restore_frameset (rp_screen *s, struct list_head *head);
void frameset_free (struct list_head *head);
-rp_window_frame *screen_get_frame (screen_info *s, int frame_num);
+rp_window_frame *screen_get_frame (rp_screen *s, int frame_num);
#endif