summaryrefslogtreecommitdiff
path: root/src/frame.h
diff options
context:
space:
mode:
authorsabetts <sabetts>2003-05-15 07:36:21 +0000
committersabetts <sabetts>2003-05-15 07:36:21 +0000
commit55fadaecf93dfdf6a7c9510098057c5152e3b920 (patch)
treef1fc81a4aa497466f1cf5a497386ae994265984c /src/frame.h
parent2d8945e4ee37ceee9d58e91681c6d3722a83c956 (diff)
downloadratpoison-55fadaecf93dfdf6a7c9510098057c5152e3b920.zip
* src/data.h (struct rp_frame): renamed from rp_window_frame. All
dependant code updated. * src/main.c: remove child_info global. Add rp_children global. (chld_handler): update the terminated and status fields of any terminated children. * src/events.c (handle_signals): loop through each child process and remove them from the list. Print a message for any child that doesn't return a 0 status. * src/data.h (rp_child_info): new fields, terminated and node. remove child_info global. Add rp_children global. * src/actions.c (spawn): Add the command to the list of children.
Diffstat (limited to 'src/frame.h')
-rw-r--r--src/frame.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/frame.h b/src/frame.h
index 75fbb95..0e79434 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -21,25 +21,25 @@
#ifndef FRAME_H
#define FRAME_H
-void frame_move_down (rp_window_frame *frame, int amount);
-void frame_move_up (rp_window_frame *frame, int amount);
-void frame_move_right (rp_window_frame *frame, int amount);
-void frame_move_left (rp_window_frame *frame, int amount);
-void frame_resize_down (rp_window_frame *frame, int amount);
-void frame_resize_up (rp_window_frame *frame, int amount);
-void frame_resize_right (rp_window_frame *frame, int amount);
-void frame_resize_left (rp_window_frame *frame, int amount);
-int frame_height(rp_window_frame *frame);
-int frame_width(rp_window_frame *frame);
-int frame_bottom (rp_window_frame *frame);
-int frame_right (rp_window_frame *frame);
-int frame_top (rp_window_frame *frame);
-int frame_left (rp_window_frame *frame);
+void frame_move_down (rp_frame *frame, int amount);
+void frame_move_up (rp_frame *frame, int amount);
+void frame_move_right (rp_frame *frame, int amount);
+void frame_move_left (rp_frame *frame, int amount);
+void frame_resize_down (rp_frame *frame, int amount);
+void frame_resize_up (rp_frame *frame, int amount);
+void frame_resize_right (rp_frame *frame, int amount);
+void frame_resize_left (rp_frame *frame, int amount);
+int frame_height(rp_frame *frame);
+int frame_width(rp_frame *frame);
+int frame_bottom (rp_frame *frame);
+int frame_right (rp_frame *frame);
+int frame_top (rp_frame *frame);
+int frame_left (rp_frame *frame);
-rp_window_frame *frame_new (rp_screen *s);
-void frame_free (rp_screen *s, rp_window_frame *f);
-rp_window_frame *frame_copy (rp_window_frame *frame);
-char *frame_dump (rp_window_frame *frame);
-rp_window_frame *frame_read (char *str);
+rp_frame *frame_new (rp_screen *s);
+void frame_free (rp_screen *s, rp_frame *f);
+rp_frame *frame_copy (rp_frame *frame);
+char *frame_dump (rp_frame *frame);
+rp_frame *frame_read (char *str);
#endif