summaryrefslogtreecommitdiff
path: root/ui/help_url.h
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2016-12-09 11:46:20 +0100
committerMichael Mann <mmann78@netscape.net>2016-12-09 15:50:04 +0000
commit43000acd7429a5870c6b411263c2e4a8342da759 (patch)
tree336803a8ab024fb87c83e0d1123fe8e527f91250 /ui/help_url.h
parent8dca05f188712d26efb0e126a00d4ac167a5c8dc (diff)
downloadwireshark-43000acd7429a5870c6b411263c2e4a8342da759.tar.gz
ui: move filesystem code to wsutil/filesystem.c
This function can be used by code outside ui (eg. extcap). Ping-Bug: 13218 Change-Id: Ic11f7acebefeaf777692df044ebff9b1bc387aa3 Reviewed-on: https://code.wireshark.org/review/19178 Petri-Dish: Dario Lombardo <lomato@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'ui/help_url.h')
-rw-r--r--ui/help_url.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/ui/help_url.h b/ui/help_url.h
index 213ef65fb8..d75898d762 100644
--- a/ui/help_url.h
+++ b/ui/help_url.h
@@ -124,16 +124,6 @@ typedef enum {
HELP_TELEPHONY_RTP_PLAYER_DIALOG
} topic_action_e;
-/** Given a filename return a filesystem URL. Relative paths are prefixed with
- * the datafile directory path.
- *
- * @param filename A file name or path. Relative paths will be prefixed with
- * the data file directory path.
- * @return A filesystem URL for the file or NULL on failure. A non-NULL return
- * value must be freed with g_free().
- */
-gchar *data_file_url(const gchar *filename);
-
/** Given a topic action return its online (www.wireshark.org) URL or NULL.
*
* @param action Topic action, e.g. ONLINEPAGE_HOME or ONLINEPAGE_ASK.