[Xfce4-commits] <xfce4-screenshooter:master> Add a missing prototype.

Jérôme Guelfucci noreply at xfce.org
Sat Dec 26 22:30:10 CET 2009


Updating branch refs/heads/master
         to 1938669ea8ac46a2c2af6b193918ecf7cc8c92ac (commit)
       from 1c5210763715c03f1db9846b1a37dfc7431ed9c5 (commit)

commit 1938669ea8ac46a2c2af6b193918ecf7cc8c92ac
Author: Jérôme Guelfucci <jeromeg at xfce.org>
Date:   Sat Dec 26 13:53:16 2009 +0100

    Add a missing prototype.

 lib/screenshooter-capture.c |   49 ++++++++++++++++++++++--------------------
 1 files changed, 26 insertions(+), 23 deletions(-)

diff --git a/lib/screenshooter-capture.c b/lib/screenshooter-capture.c
index e93a35a..8735075 100644
--- a/lib/screenshooter-capture.c
+++ b/lib/screenshooter-capture.c
@@ -50,29 +50,32 @@ typedef struct
 
 
 
-static GdkWindow *get_active_window                   (GdkScreen      *screen,
-                                                       gboolean       *needs_unref,
-                                                       gboolean       *border);
-static GdkPixbuf *get_window_screenshot               (GdkWindow      *window,
-                                                       gboolean        show_mouse,
-                                                       gboolean        border);
-static GdkPixbuf *get_rectangle_screenshot            (void);
-static gboolean   cb_key_pressed                      (GtkWidget      *widget,
-                                                       GdkEventKey    *event,
-                                                       gboolean       *cancelled);
-static gboolean   cb_expose                           (GtkWidget      *widget,
-                                                       GdkEventExpose *event,
-                                                       RubberBandData *rbdata);
-static gboolean   cb_button_pressed                   (GtkWidget      *widget,
-                                                       GdkEventButton *event,
-                                                       RubberBandData *rbdata);
-static gboolean   cb_button_released                  (GtkWidget      *widget,
-                                                       GdkEventButton *event,
-                                                       RubberBandData *rbdata);
-static gboolean   cb_motion_notify                    (GtkWidget      *widget,
-                                                       GdkEventMotion *event,
-                                                       RubberBandData *rbdata);
-static GdkPixbuf *get_rectangle_screenshot_composited (void);
+static GdkWindow       *get_active_window                   (GdkScreen      *screen,
+                                                             gboolean       *needs_unref,
+                                                             gboolean       *border);
+static GdkPixbuf       *get_window_screenshot               (GdkWindow      *window,
+                                                             gboolean        show_mouse,
+                                                             gboolean        border);
+static GdkFilterReturn  region_filter_func                  (GdkXEvent      *xevent,
+                                                             GdkEvent       *event,
+                                                             RbData         *rbdata);
+static GdkPixbuf       *get_rectangle_screenshot            (void);
+static gboolean         cb_key_pressed                      (GtkWidget      *widget,
+                                                             GdkEventKey    *event,
+                                                             gboolean       *cancelled);
+static gboolean         cb_expose                           (GtkWidget      *widget,
+                                                             GdkEventExpose *event,
+                                                             RubberBandData *rbdata);
+static gboolean         cb_button_pressed                   (GtkWidget      *widget,
+                                                             GdkEventButton *event,
+                                                             RubberBandData *rbdata);
+static gboolean         cb_button_released                  (GtkWidget      *widget,
+                                                             GdkEventButton *event,
+                                                             RubberBandData *rbdata);
+static gboolean         cb_motion_notify                    (GtkWidget      *widget,
+                                                             GdkEventMotion *event,
+                                                             RubberBandData *rbdata);
+static GdkPixbuf       *get_rectangle_screenshot_composited (void);
 
 
 



More information about the Xfce4-commits mailing list