diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2003-12-13 18:01:30 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2003-12-13 18:01:30 +0000 |
commit | 156be8aa9ffc57c5bf08228b2c7d9222b96889a9 (patch) | |
tree | a7a4a41dd3212e66b450bc79c50a842ab09133b2 /menu.h | |
parent | 792fb5f8fb409c9241f197894a36fcfea5e8539c (diff) | |
download | wireshark-156be8aa9ffc57c5bf08228b2c7d9222b96889a9.tar.gz wireshark-156be8aa9ffc57c5bf08228b2c7d9222b96889a9.tar.bz2 wireshark-156be8aa9ffc57c5bf08228b2c7d9222b96889a9.zip |
added "most recently used" lists for
"opened capture files" and "display filter used",
the settings will be saved in the file "recent" in the users config path
svn path=/trunk/; revision=9275
Diffstat (limited to 'menu.h')
-rw-r--r-- | menu.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -2,7 +2,7 @@ * Definitions for menu routines with toolkit-independent APIs but * toolkit-dependent implementations. * - * $Id: menu.h,v 1.11 2003/09/24 02:36:33 guy Exp $ + * $Id: menu.h,v 1.12 2003/12/13 18:01:29 ulfl Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -30,6 +30,11 @@ extern "C" { #endif /* __cplusplus */ + +/* Add a new recent capture filename to the "Recent Files" submenu + (duplicates will be ignored) */ +void add_menu_recent_capture_file(gchar *file); + /* Routines to enable or disable sets of menu items. */ /* Enable or disable menu items based on whether you have a capture file |