Some typos fixed.
[metze/wireshark/wip.git] / fileset.h
index 2eb05cdc82a8889c436950bccb8b719061da366c..1cf88adc547b644650b19ff91c954ff7721aeeb5 100644 (file)
--- a/fileset.h
+++ b/fileset.h
@@ -1,8 +1,6 @@
 /* fileset.h
  * Definitions for routines for file sets.
  *
- * $Id$
- *
  * Wireshark - Network traffic analyzer
  * By Gerald Combs <gerald@wireshark.org>
  * Copyright 1998 Gerald Combs
@@ -30,12 +28,12 @@ extern "C" {
 #endif /* __cplusplus */
 
 typedef struct _fileset_entry {
-  char     *fullname;      /* File name with path (g_strdup'ed) */
-  char     *name;          /* File name without path (g_strdup'ed) */
-  time_t   ctime;          /* create time */
-  time_t   mtime;          /* last modified time */
-  gint64   size;           /* size of file in bytes */
-  gboolean current;        /* is this the currently loaded file? */
+    char     *fullname;      /* File name with path (g_strdup'ed) */
+    char     *name;          /* File name without path (g_strdup'ed) */
+    time_t   ctime;          /* create time */
+    time_t   mtime;          /* last modified time */
+    gint64   size;           /* size of file in bytes */
+    gboolean current;        /* is this the currently loaded file? */
 } fileset_entry;
 
 
@@ -66,3 +64,16 @@ extern void fileset_update_file(const char *path);
 #endif /* __cplusplus */
 
 #endif /* __FILESET_H__ */
+
+/*
+ * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * vi: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */