summaryrefslogtreecommitdiff
path: root/epan/color_filters.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-01-26 12:21:57 +0100
committerMichael Mann <mmann78@netscape.net>2016-01-26 13:32:49 +0000
commit581b93781bbc3f7750f1a4de6e270f2b76fa6599 (patch)
treef84f7687e431961f5b0b803f0cf2ea224bfc0e54 /epan/color_filters.h
parent4f2ce4cc2e68a69584e6c29e760163fd3149dae2 (diff)
downloadwireshark-581b93781bbc3f7750f1a4de6e270f2b76fa6599.tar.gz
color_filter(.h): Fix The following parameters of ... are not documented
Part 2 (oups forget to save before commit) Change-Id: I186596d6c6e3838fc86794638f50f115b270d230 Reviewed-on: https://code.wireshark.org/review/13548 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/color_filters.h')
-rw-r--r--epan/color_filters.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/epan/color_filters.h b/epan/color_filters.h
index ea212b7cdd..a777e96632 100644
--- a/epan/color_filters.h
+++ b/epan/color_filters.h
@@ -131,6 +131,7 @@ color_filters_colorize_packet(struct epan_dissect *edt);
/** Clone the currently active filter list.
*
* @param user_data will be returned by each call to to color_filter_add_cb()
+ * @param add_cb the callback function to add color filter
*/
WS_DLL_PUBLIC void color_filters_clone(gpointer user_data, color_filter_add_cb_func add_cb);
@@ -158,12 +159,14 @@ WS_DLL_PUBLIC gboolean color_filters_read_globals(gpointer user_data, gchar** er
*
* @param tmp_cfl the temporary color filter list to apply
* @param edit_cfl the edited permanent color filter list to apply
+ * @param err_msg a string with error message
*/
WS_DLL_PUBLIC gboolean color_filters_apply(GSList *tmp_cfl, GSList *edit_cfl, gchar** err_msg);
/** Save filters in users filter file.
*
* @param cfl the filter list to write
+ * @param err_msg a string with error message
* @return TRUE if write succeeded
*/
WS_DLL_PUBLIC gboolean color_filters_write(GSList *cfl, gchar** err_msg);
@@ -173,6 +176,7 @@ WS_DLL_PUBLIC gboolean color_filters_write(GSList *cfl, gchar** err_msg);
* @param path the path to the filter file
* @param cfl the filter list to write
* @param only_selected TRUE if only the selected filters should be saved
+ * @param err_msg a string with error message
* @return TRUE, if write succeeded
*/
WS_DLL_PUBLIC gboolean color_filters_export(const gchar *path, GSList *cfl, gboolean only_selected, gchar** err_msg);