aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wslua/wslua.h
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2011-08-19 08:36:02 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2011-08-19 08:36:02 +0000
commit9c7e12c572566a0a8a021f273a511014f8a5bd8c (patch)
tree8cb79f583fd1a73aaf2de293c010a8c3a22bc0ad /epan/wslua/wslua.h
parentc65403769a0465303b5ae45558609c1a680cf77d (diff)
Introduce NSTime Lua object to handle nstime_t.
This object can be used to retreive other absolute and relative time fields, create and modify nstime_t values and put generated time values in the tree. Also added ProtoField.absolute_time and ProtoField.relative_time. svn path=/trunk/; revision=38616
Diffstat (limited to 'epan/wslua/wslua.h')
-rw-r--r--epan/wslua/wslua.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/wslua/wslua.h b/epan/wslua/wslua.h
index 7c595770d1..a5d38d6658 100644
--- a/epan/wslua/wslua.h
+++ b/epan/wslua/wslua.h
@@ -51,6 +51,7 @@
#include <epan/funnel.h>
#include <epan/tvbparse.h>
#include <epan/epan.h>
+#include <epan/nstime.h>
#include "declare_wslua.h"
@@ -220,6 +221,7 @@ typedef struct _wslua_cols* Columns;
typedef struct _wslua_pinfo* Pinfo;
typedef struct _wslua_treeitem* TreeItem;
typedef address* Address;
+typedef nstime_t* NSTime;
typedef gint64* Int64;
typedef guint64* UInt64;
typedef header_field_info** Field;