aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/tempfile.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-11-13 22:18:01 +0000
committerGerald Combs <gerald@wireshark.org>2013-11-13 22:18:01 +0000
commitb0063a025bfb68a3bc05a69cadf528116325576f (patch)
tree5b047bb81d7bdf70e4baed7bbe2700a5bc058861 /wsutil/tempfile.h
parent3e41e172db45009124ec19ad859cf9cb82c88200 (diff)
Highlight selected sequence diagram items.
Create a new dialog each time the user follows a stream. A lot of the follow code seems to assume one and only one dialog so there are likely outstanding bugs. Don't use the global cfile (should we deprecate its usage?). We want to move closer to multiple documents, not further away. Clean up after ourselves. Free our payload list and unlink our temp file. Make a bunch of gchar*s QStrings. Make sure our destructor gets called and use it. Make member variable and method names more consistent. svn path=/trunk/; revision=53306
Diffstat (limited to 'wsutil/tempfile.h')
-rw-r--r--wsutil/tempfile.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/wsutil/tempfile.h b/wsutil/tempfile.h
index 65746704dd..4f9492ed87 100644
--- a/wsutil/tempfile.h
+++ b/wsutil/tempfile.h
@@ -40,9 +40,9 @@ extern "C" {
* Create a tempfile with the given prefix (e.g. "wireshark"). The path
* is created using g_get_tmp_dir and mkstemp.
*
- * @param namebuf If not NULL, receives the full path of the temp file.
+ * @param namebuf[in,out] If not NULL, receives the full path of the temp file.
* Must NOT be freed.
- * @param pfx A prefix for the temporary file.
+ * @param pfx[in] A prefix for the temporary file.
* @return The file descriptor of the new tempfile, from mkstemp().
*/
WS_DLL_PUBLIC int create_tempfile(char **namebuf, const char *pfx);