aboutsummaryrefslogtreecommitdiffstats
path: root/ui/export_object.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2012-10-24 15:51:59 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2012-10-24 15:51:59 +0000
commitee2a04416d29627db07aa49c7a2c5b5eef097ee0 (patch)
tree6fe10e5b97cbf17decf174adce159fefa139d2a8 /ui/export_object.h
parent936082acb529b4e73b4d8d4f9fb8e13fb569efc1 (diff)
Fix indent and add Modelines info for new common ui source file(s)
svn path=/trunk/; revision=45762
Diffstat (limited to 'ui/export_object.h')
-rw-r--r--ui/export_object.h35
1 files changed, 24 insertions, 11 deletions
diff --git a/ui/export_object.h b/ui/export_object.h
index d7711588cd..ba73361224 100644
--- a/ui/export_object.h
+++ b/ui/export_object.h
@@ -37,14 +37,14 @@ struct _export_object_list_t;
typedef struct _export_object_list_t export_object_list_t;
typedef struct _export_object_entry_t {
- guint32 pkt_num;
- gchar *hostname;
- gchar *content_type;
- gchar *filename;
- /* We need to store a 64 bit integer to hold a file length
- (was guint payload_len;) */
- gint64 payload_len;
- guint8 *payload_data;
+ guint32 pkt_num;
+ gchar *hostname;
+ gchar *content_type;
+ gchar *filename;
+ /* We need to store a 64 bit integer to hold a file length
+ (was guint payload_len;) */
+ gint64 payload_len;
+ guint8 *payload_data;
} export_object_entry_t;
void object_list_add_entry(export_object_list_t *object_list, export_object_entry_t *entry);
@@ -57,11 +57,11 @@ const char *ct2ext(const char *content_type);
/* Protocol specific */
gboolean eo_dicom_packet(void *tapdata, packet_info *pinfo, epan_dissect_t *edt _U_,
- const void *data);
+ const void *data);
gboolean eo_http_packet(void *tapdata, packet_info *pinfo, epan_dissect_t *edt _U_,
- const void *data);
+ const void *data);
gboolean eo_smb_packet(void *tapdata, packet_info *pinfo, epan_dissect_t *edt _U_,
- const void *data);
+ const void *data);
void eo_smb_cleanup(void);
@@ -71,3 +71,16 @@ void eo_smb_cleanup(void);
#endif /* __cplusplus */
#endif /* __EXPORT_OBJECT_H__ */
+
+/*
+ * Editor modelines
+ *
+ * Local Variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * ex: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */