Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
preference_utils.h
Go to the documentation of this file.
1
12#ifndef __PREFERENCE_UTILS_H__
13#define __PREFERENCE_UTILS_H__
14
15#include <glib.h>
17
18#ifdef __cplusplus
19extern "C" {
20#endif /* __cplusplus */
21
29extern bool auto_scroll_live;
30
33extern void prefs_to_capture_opts(capture_options* capture_opts);
34
37extern void prefs_main_write(void);
38
50extern unsigned int prefs_store_ext(const char * module, const char * key, const char * value);
51
63extern bool prefs_store_ext_multiple(const char * module, GHashTable * pref_values);
64
74int column_prefs_add_custom(int fmt, const char *title,
75 const char *custom_field,
76 int position);
77
84int column_prefs_has_custom(const char *custom_field);
85
99bool column_prefs_custom_display_strings(const char *custom_field);
100
110bool column_prefs_custom_display_details(const char *custom_field);
111
116void column_prefs_remove_link(GList* col_link);
117
122void column_prefs_remove_nth(int col);
123
127void save_migrated_uat(const char *uat_name, bool *old_pref);
128
129#ifdef __cplusplus
130}
131#endif /* __cplusplus */
132
133#endif /* __PREFERENCE_UTILS_H__ */
int column_prefs_has_custom(const char *custom_field)
Definition preference_utils.c:209
void prefs_to_capture_opts(capture_options *capture_opts)
bool auto_scroll_live
unsigned int prefs_store_ext(const char *module, const char *key, const char *value)
Definition preference_utils.c:109
void column_prefs_remove_nth(int col)
Definition preference_utils.c:302
bool prefs_store_ext_multiple(const char *module, GHashTable *pref_values)
Definition preference_utils.c:124
void prefs_main_write(void)
Definition preference_utils.c:51
void save_migrated_uat(const char *uat_name, bool *old_pref)
Definition preference_utils.c:308
bool column_prefs_custom_display_details(const char *custom_field)
Definition preference_utils.c:260
bool column_prefs_custom_display_strings(const char *custom_field)
Definition preference_utils.c:231
int column_prefs_add_custom(int fmt, const char *title, const char *custom_field, int position)
Definition preference_utils.c:160
void column_prefs_remove_link(GList *col_link)
Definition preference_utils.c:286
Definition capture_opts.h:236