Fix a comment.

Change-Id: I46885d028fe9ff5254baefc15283626b9bdb6bce
Reviewed-on: https://code.wireshark.org/review/5711
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2014-12-10 16:21:41 -08:00
parent 2f8030f85a
commit 144855ce6d
1 changed files with 4 additions and 5 deletions

View File

@ -184,15 +184,14 @@ WS_DLL_PUBLIC void dissector_all_tables_foreach_changed (DATFunc func,
WS_DLL_PUBLIC void dissector_table_foreach_handle(const char *table_name, DATFunc_handle func,
gpointer user_data);
/** Iterate over dissectors in a table matching against a given function.
/** Iterate over all dissector tables.
*
* Walk all dissector tables calling a user supplied function on each
* table.
* @param[in] func The function to call for each dissector.
* @param[in] func The function to call for each table.
* @param[in] user_data User data to pass to the function.
* @param[in] compare_key_func Hash table key comparison function. All entries
* are matched if NULL.
*/
* @param[in] compare_key_func Function used to sort tables before calling
* the function. No sorting is done if NULL. */
WS_DLL_PUBLIC void dissector_all_tables_foreach_table (DATFunc_table func,
gpointer user_data, GCompareFunc compare_key_func);