summaryrefslogtreecommitdiff
path: root/prefs.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>1999-12-02 04:30:15 +0000
committerGerald Combs <gerald@wireshark.org>1999-12-02 04:30:15 +0000
commitee51e6534af130b550fbc12f06323322db379bd0 (patch)
tree35e0d1883cf89babafe2e173a87c0e78c3295196 /prefs.h
parent2478a404c8d3fa6244cac8512458e092f6a2fe20 (diff)
downloadwireshark-ee51e6534af130b550fbc12f06323322db379bd0.tar.gz
Add stream window color preferences. We don't (yet) use cmaps, so this
may not work with pseudocolor systems. svn path=/trunk/; revision=1179
Diffstat (limited to 'prefs.h')
-rw-r--r--prefs.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/prefs.h b/prefs.h
index 13da415cbb..addc7ed8dc 100644
--- a/prefs.h
+++ b/prefs.h
@@ -1,7 +1,7 @@
/* prefs.h
* Definitions for preference handling routines
*
- * $Id: prefs.h,v 1.8 1999/09/09 03:31:50 gram Exp $
+ * $Id: prefs.h,v 1.9 1999/12/02 04:30:03 gerald Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -33,12 +33,13 @@
#define PR_DEST_FILE 1
typedef struct _e_prefs {
- gint pr_format;
- gint pr_dest;
- gchar *pr_file;
- gchar *pr_cmd;
- GList *col_list;
- gint num_cols;
+ gint pr_format;
+ gint pr_dest;
+ gchar *pr_file;
+ gchar *pr_cmd;
+ GList *col_list;
+ gint num_cols;
+ GdkColor st_client_fg, st_client_bg, st_server_fg, st_server_bg;
} e_prefs;
extern e_prefs prefs;