summaryrefslogtreecommitdiff
path: root/epan/epan.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2012-10-18 21:14:43 +0000
committerGerald Combs <gerald@wireshark.org>2012-10-18 21:14:43 +0000
commit576b24c96ee4ac4ca7fb9fc116b6e8ce3704227d (patch)
treef8e0abf64215eb0083a475acfdcea3806e4c0ba5 /epan/epan.h
parent05c1e47f68b609702ec13a09e5ebc1a572841e12 (diff)
downloadwireshark-576b24c96ee4ac4ca7fb9fc116b6e8ce3704227d.tar.gz
Move ui-independent object export routines to the common ui directory.
Implement DICOM, HTTP, and SMB object exports. Rename the GTK+ export files. C++-ize epan/tap.h. Fix an apparent memory leak in eo_save_all_clicked_cb. The Qt dialog has an indeterminate progress bar. I tried adding something similar to the GTK+ dialog but event processing led down a rabbit hole. svn path=/trunk/; revision=45647
Diffstat (limited to 'epan/epan.h')
-rw-r--r--epan/epan.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/epan/epan.h b/epan/epan.h
index 24d751e3d1..c668fa0423 100644
--- a/epan/epan.h
+++ b/epan/epan.h
@@ -21,8 +21,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#ifndef EPAN_H
-#define EPAN_H
+#ifndef __EPAN_H__
+#define __EPAN_H__
#ifdef __cplusplus
extern "C" {
@@ -47,16 +47,16 @@ typedef struct _epan_dissect_t epan_dissect_t;
@b Sections:
- \ref proto_pub
*/
-/*
+/*
Ref 1
Epan
-Ethereal Packet ANalyzer (XXX - is this correct?) the packet analyzing engine. Source code can be found in the epan directory.
+Ethereal Packet ANalyzer (XXX - is this correct?) the packet analyzing engine. Source code can be found in the epan directory.
-Protocol-Tree - Keep data of the capture file protocol information.
+Protocol-Tree - Keep data of the capture file protocol information.
-Dissectors - The various protocol dissectors in epan/dissectors.
+Dissectors - The various protocol dissectors in epan/dissectors.
-Plugins - Some of the protocol dissectors are implemented as plugins. Source code can be found at plugins.
+Plugins - Some of the protocol dissectors are implemented as plugins. Source code can be found at plugins.
Display-Filters - the display filter engine at epan/dfilter
@@ -191,4 +191,4 @@ epan_get_runtime_version_info(GString *str);
}
#endif /* __cplusplus */
-#endif /* EPAN_H */
+#endif /* __EPAN_H__ */