Wireshark 4.5.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>
16
17#ifdef __cplusplus
18extern "C" {
19#endif /* __cplusplus */
20
28extern bool auto_scroll_live;
29
32extern void prefs_to_capture_opts(void);
33
36extern void prefs_main_write(void);
37
49extern unsigned int prefs_store_ext(const char * module, const char * key, const char * value);
50
62extern bool prefs_store_ext_multiple(const char * module, GHashTable * pref_values);
63
73int column_prefs_add_custom(int fmt, const char *title,
74 const char *custom_field,
75 int position);
76
83int column_prefs_has_custom(const char *custom_field);
84
98bool column_prefs_custom_display_strings(const char *custom_field);
99
109bool column_prefs_custom_display_details(const char *custom_field);
110
115void column_prefs_remove_link(GList* col_link);
116
121void column_prefs_remove_nth(int col);
122
126void save_migrated_uat(const char *uat_name, bool *old_pref);
127
128#ifdef __cplusplus
129}
130#endif /* __cplusplus */
131
132#endif /* __PREFERENCE_UTILS_H__ */
int column_prefs_has_custom(const char *custom_field)
Definition preference_utils.c:213
void prefs_to_capture_opts(void)
Definition preference_utils.c:35
bool auto_scroll_live
unsigned int prefs_store_ext(const char *module, const char *key, const char *value)
Definition preference_utils.c:113
void column_prefs_remove_nth(int col)
Definition preference_utils.c:306
bool prefs_store_ext_multiple(const char *module, GHashTable *pref_values)
Definition preference_utils.c:128
void prefs_main_write(void)
Definition preference_utils.c:50
void save_migrated_uat(const char *uat_name, bool *old_pref)
Definition preference_utils.c:312
bool column_prefs_custom_display_details(const char *custom_field)
Definition preference_utils.c:264
bool column_prefs_custom_display_strings(const char *custom_field)
Definition preference_utils.c:235
int column_prefs_add_custom(int fmt, const char *title, const char *custom_field, int position)
Definition preference_utils.c:164
void column_prefs_remove_link(GList *col_link)
Definition preference_utils.c:290