Make arrays of 4 octets arrays of 4 guint8.
[metze/wireshark/wip.git] / ui / alert_box.h
index 1660749dc7ca2799aa9254f462b17a637ee4fbd2..169f3fb94431e511200cb7a922358c5da4cb10ed 100644 (file)
@@ -6,19 +6,7 @@
  * By Gerald Combs <gerald@wireshark.org>
  * Copyright 1998 Gerald Combs
  *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * SPDX-License-Identifier: GPL-2.0-or-later
  */
 
 #ifndef __ALERT_BOX_H__
@@ -40,17 +28,23 @@ extern void vfailure_alert_box(const char *msg_format, va_list ap);
 extern void vwarning_alert_box(const char *msg_format, va_list ap);
 
 /*
- * Alert box for a failed attempt to open or create a capture file.
- * "err" is assumed to be a UNIX-style errno or a WTAP_ERR_ value;
- * "err_info" is assumed to be a string giving further information for
- * some WTAP_ERR_ values; "for_writing" is TRUE if the file is being
- * opened for writing and FALSE if it's being opened for reading;
- * "file_type" is a WTAP_FILE_TYPE_SUBTYPE_ value for the type of
- * file being written (it's ignored for opening-for-reading errors).
+ * Alert box for a failed attempt to open a capture file for reading.
+ * "filename" is the name of the file being opened; "err" is assumed
+ * to be a UNIX-style errno or a WTAP_ERR_ value; "err_info" is assumed
+ * to be a string giving further information for some WTAP_ERR_ values..
  */
 extern void cfile_open_failure_alert_box(const char *filename, int err,
-                                         gchar *err_info, gboolean for_writing,
-                                         int file_type);
+                                         gchar *err_info);
+
+/*
+ * Alert box for a failed attempt to open a capture file for writing.
+ * "filename" is the name of the file being opened; "err" is assumed
+ * to be a UNIX-style errno or a WTAP_ERR_ value; "file_type_subtype"
+ * is a WTAP_FILE_TYPE_SUBTYPE_ value for the type and subtype of file
+ * being opened.
+ */
+extern void cfile_dump_open_failure_alert_box(const char *filename, int err,
+                                              int file_type_subtype);
 
 /*
  * Alert box for a failed attempt to read from a capture file.
@@ -61,6 +55,23 @@ extern void cfile_open_failure_alert_box(const char *filename, int err,
 extern void cfile_read_failure_alert_box(const char *filename, int err,
                                          gchar *err_info);
 
+/*
+ * Alert box for a failed attempt to write to a capture file.
+ * "in_filename" is the name of the file from which the record being
+ * written came; "out_filename" is the name of the file to which we're
+ * writing; "err" is assumed "err" is assumed to be a UNIX-style errno
+ * or a WTAP_ERR_ value; "err_info" is assumed to be a string giving
+ * further information for some WTAP_ERR_ values; "framenum" is the frame
+ * number of the record on which the error occurred; "file_type_subtype"
+ * is a WTAP_FILE_TYPE_SUBTYPE_ value for the type and subtype of file
+ * being written.
+ */
+extern void cfile_write_failure_alert_box(const char *in_filename,
+                                          const char *out_filename,
+                                          int err, gchar *err_info,
+                                          guint32 framenum,
+                                          int file_type_subtype);
+
 /*
  * Alert box for a failed attempt to close a capture file.
  * "err" is assumed to be a UNIX-style errno or a WTAP_ERR_ value.