aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-01-26 09:05:53 +0100
committerAnders Broman <a.broman58@gmail.com>2016-01-26 09:08:23 +0000
commitbbb84a5aa32a1359142011d90af50e926cf74b2e (patch)
tree9ba832a3a9a7c3444ca03b898a8857e470e5168f
parent0cc17787d6caf0c76f0c50ea52acafaa40cf0edb (diff)
color_filter(.h): Fix The following parameters of ... are not documented:
parameter 'err_msg' or parameter 'add_cb' Change-Id: Iea43833de7bbb12ce16c3363d26f70a2859e092c Reviewed-on: https://code.wireshark.org/review/13543 Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--epan/color_filters.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/epan/color_filters.h b/epan/color_filters.h
index 811ede621e..ea212b7cdd 100644
--- a/epan/color_filters.h
+++ b/epan/color_filters.h
@@ -94,6 +94,7 @@ WS_DLL_PUBLIC gboolean tmp_color_filters_used(void);
* @param filt_nr a number 1-10 pointing to a temporary color
* @param filter the new filter-string
* @param disabled whether the filter-rule should be disabled
+ * @param err_msg a string with error message
*/
WS_DLL_PUBLIC gboolean
color_filters_set_tmp(guint8 filt_nr, const gchar *filter, gboolean disabled, gchar **err_msg);
@@ -137,6 +138,8 @@ WS_DLL_PUBLIC void color_filters_clone(gpointer user_data, color_filter_add_cb_f
*
* @param path the path to the import file
* @param user_data will be returned by each call to to color_filter_add_cb()
+ * @param err_msg a string with error message
+ * @param add_cb the callback function to add color filter
* @return TRUE, if read succeeded
*/
WS_DLL_PUBLIC gboolean color_filters_import(const gchar *path, const gpointer user_data, gchar** err_msg, color_filter_add_cb_func add_cb);
@@ -144,6 +147,8 @@ WS_DLL_PUBLIC gboolean color_filters_import(const gchar *path, const gpointer us
/** Read filters from the global filter file (not the users file).
*
* @param user_data will be returned by each call to to color_filter_add_cb()
+ * @param err_msg a string with error message
+ * @param add_cb the callback function to add color filter
* @return TRUE, if read succeeded
*/
WS_DLL_PUBLIC gboolean color_filters_read_globals(gpointer user_data, gchar** err_msg, color_filter_add_cb_func add_cb);