aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/capture_prefs.h
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2004-06-01 20:28:05 +0000
committerUlf Lamping <ulf.lamping@web.de>2004-06-01 20:28:05 +0000
commita8db4e10a809aa8f2ab023fa7c5b00df3d0f0ca2 (patch)
tree02b0db9b70720ff590692ed202f752618efc9b97 /gtk/capture_prefs.h
parent35bb7e8fc2c9c54f58c2ccb215689b30e698bd79 (diff)
add details for doxygen, various code cleanups as a result of this
svn path=/trunk/; revision=11057
Diffstat (limited to 'gtk/capture_prefs.h')
-rw-r--r--gtk/capture_prefs.h31
1 files changed, 27 insertions, 4 deletions
diff --git a/gtk/capture_prefs.h b/gtk/capture_prefs.h
index b6f7a70dc3..1f5e06052c 100644
--- a/gtk/capture_prefs.h
+++ b/gtk/capture_prefs.h
@@ -1,7 +1,7 @@
/* capture_prefs.h
* Definitions for capture preferences window
*
- * $Id: capture_prefs.h,v 1.2 2002/08/28 21:03:46 jmayer Exp $
+ * $Id: capture_prefs.h,v 1.3 2004/06/01 20:28:04 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -25,9 +25,32 @@
#ifndef __CAPTURE_PREFS_H__
#define __CAPTURE_PREFS_H__
+/** @file
+ * Capture preferences page.
+ */
+
+/** Build a capture preferences page.
+ *
+ * @return the new capture preferences page
+ */
GtkWidget *capture_prefs_show(void);
-void capture_prefs_fetch(GtkWidget *w);
-void capture_prefs_apply(GtkWidget *w);
-void capture_prefs_destroy(GtkWidget *w);
+
+/** Fetch preference values from page.
+ *
+ * @param widget widget from capture_prefs_show()
+ */
+void capture_prefs_fetch(GtkWidget *widget);
+
+/** Apply preference values from page.
+ *
+ * @param widget widget from capture_prefs_show()
+ */
+void capture_prefs_apply(GtkWidget *widget);
+
+/** Destroy preference values from page.
+ *
+ * @param widget widget from capture_prefs_show()
+ */
+void capture_prefs_destroy(GtkWidget *widget);
#endif