aboutsummaryrefslogtreecommitdiffstats
path: root/cfile.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-08-14 04:14:36 +0000
committerGuy Harris <guy@alum.mit.edu>2013-08-14 04:14:36 +0000
commitcbda96d79a9e7f7deb1cf8c6a06ba2a71c546334 (patch)
treee54f8b0fb0267a7ee9e07508ba65935ef3c8349c /cfile.h
parentda7c920853700355f8613990a166242cb3f16200 (diff)
Global variables considered harmful.
svn path=/trunk/; revision=51352
Diffstat (limited to 'cfile.h')
-rw-r--r--cfile.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/cfile.h b/cfile.h
index 3fa388002b..3735505128 100644
--- a/cfile.h
+++ b/cfile.h
@@ -125,6 +125,12 @@ typedef struct _capture_file {
#endif
gpointer window; /* Top-level window associated with file */
GTree *frames_user_comments; /* BST with user comments for frames (key = frame_data) */
+ gulong computed_elapsed;
+
+ guint32 cum_bytes;
+ const frame_data *ref;
+ frame_data *prev_dis;
+ frame_data *prev_cap;
} capture_file;
extern void cap_file_init(capture_file *cf);