aboutsummaryrefslogtreecommitdiffstats
path: root/epan/guid-utils.h
diff options
context:
space:
mode:
authorTomas Kukosa <tomas.kukosa@siemens.com>2006-03-10 11:58:22 +0000
committerTomas Kukosa <tomas.kukosa@siemens.com>2006-03-10 11:58:22 +0000
commit923855bb20845f55472dfe8e62b7b43660f2f63b (patch)
tree79879c08850761a73e66166eea9838551d75b3e7 /epan/guid-utils.h
parent281e4a7ebb92c705d0d757e472fd6285eaf2636f (diff)
new FT_GUID handling - big/little endian supported
svn path=/trunk/; revision=17566
Diffstat (limited to 'epan/guid-utils.h')
-rw-r--r--epan/guid-utils.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/epan/guid-utils.h b/epan/guid-utils.h
new file mode 100644
index 0000000000..85269818a9
--- /dev/null
+++ b/epan/guid-utils.h
@@ -0,0 +1,38 @@
+/* guid-utils.h
+ * Definitions for GUID handling
+ *
+ * $Id$
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@ethereal.com>
+ *
+ * Copyright 1998 Gerald Combs
+ *
+ * MobileIPv6 support added by Tomislav Borosa <tomislav.borosa@siemens.hr>
+ *
+ * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __GUID_UTILS_H__
+#define __GUID_UTILS_H__
+
+typedef struct _e_guid_t {
+ guint32 data1;
+ guint16 data2;
+ guint16 data3;
+ guint8 data4[8];
+} e_guid_t;
+
+#endif /* __GUID_UTILS_H__ */