aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2008-06-24 08:05:45 +0000
committerGuy Harris <guy@alum.mit.edu>2008-06-24 08:05:45 +0000
commitc4932893e3e4021b33cf4e886ae38523638363da (patch)
treeb06a933329fb307a380a74b2f3f63c06cfacc356 /file.c
parenta9ffacc1b3e6f3a7ae8a525bed3879f19bc142d3 (diff)
Have separate callback mechanisms in file.c and capture.c; pass the
capture callbacks the capture_options * as its second argument in all cases. This makes it a bit clearer what arguments callbacks take, and means we can get rid of all global_capture_opts references in gtk/main_statusbar.c. Put the interface between gtk/main.c and gtk/main_statusbar.c into a private header. svn path=/trunk/; revision=25576
Diffstat (limited to 'file.c')
-rw-r--r--file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/file.c b/file.c
index 8c0affb019..cf2524b969 100644
--- a/file.c
+++ b/file.c
@@ -135,9 +135,9 @@ typedef struct {
gpointer user_data;
} cf_callback_data_t;
-GList *cf_callbacks = NULL;
+static GList *cf_callbacks = NULL;
-void
+static void
cf_callback_invoke(int event, gpointer data)
{
cf_callback_data_t *cb;