aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/dlg_utils.h
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2004-06-01 17:33:37 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2004-06-01 17:33:37 +0000
commit24ed92654f74fd029a77d384c8090bb45460eb8b (patch)
tree3814bde632cb726445e9ef78e7299d877616bce3 /gtk/dlg_utils.h
parentfe77b074e012fe4b260155fcc0defbeaab094daf (diff)
add details for doxygen, various code cleanups as a result of this
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11052 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/dlg_utils.h')
-rw-r--r--gtk/dlg_utils.h23
1 files changed, 19 insertions, 4 deletions
diff --git a/gtk/dlg_utils.h b/gtk/dlg_utils.h
index 301a5b7f1f..3bf2458b7b 100644
--- a/gtk/dlg_utils.h
+++ b/gtk/dlg_utils.h
@@ -1,7 +1,7 @@
/* dlg_utils.h
* Declarations of utilities to use when constructing dialogs
*
- * $Id: dlg_utils.h,v 1.17 2004/05/31 15:47:34 ulfl Exp $
+ * $Id: dlg_utils.h,v 1.18 2004/06/01 17:33:36 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -23,14 +23,29 @@
*/
/** @file
- * Utility functions for dialog windows related to Ethereal's main window,
- * depending on the window functions in ui_util.h. See window_new() and others in
- * ui_util.h for further explanation of dialogs and windows in Ethereal.
+ * Utility functions for dialog boxes, depending on the window functions in
+ * ui_util.h. These dialog box windows will be related to Ethereal's main
+ * window. See window_new() and others in ui_util.h for further explanation
+ * of dialogs and windows in Ethereal.
*/
#ifndef __DLG_UTILS_H__
#define __DLG_UTILS_H__
+/** Get the latest opened directory.
+ *
+ * @return the dirname
+ */
+char *get_last_open_dir(void);
+
+/** Set the latest opened directory.
+ * Will already be done when using file_selection_new().
+ *
+ * @param dirname the dirname
+ */
+void set_last_open_dir(char *dirname);
+
+
/** Create a dialog box window that belongs to Ethereal's main window.
* If you want to create a window, use window_new() instead.
* See window_new() for general window usage.