aboutsummaryrefslogtreecommitdiffstats
path: root/ui_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui_util.h')
-rw-r--r--ui_util.h25
1 files changed, 3 insertions, 22 deletions
diff --git a/ui_util.h b/ui_util.h
index c233b6f3a2..887fac6843 100644
--- a/ui_util.h
+++ b/ui_util.h
@@ -43,8 +43,10 @@ extern void main_window_exit(void);
extern void main_window_nested_quit(void);
/* quit the main window */
extern void main_window_quit(void);
-/* read from a pipe */
+
+/* read from a pipe (callback) */
typedef gboolean (*pipe_input_cb_t) (gint source, gpointer user_data);
+/* install callback function, called if pipe input is available */
extern void pipe_input_set_handler(gint source, gpointer user_data, int *child_process, pipe_input_cb_t input_cb);
/* packet_list.c */
@@ -64,27 +66,6 @@ gpointer packet_list_get_row_data(gint);
void packet_list_set_selected_row(gint);
gint packet_list_get_sort_column(void);
-/* proto_draw.c */
-
-/* create byte views in the main window */
-void add_main_byte_views(epan_dissect_t *edt);
-/* display the protocol tree in the main window */
-void main_proto_tree_draw(proto_tree *protocol_tree);
-void clear_tree_and_hex_views(void);
-
-/* packet_win.c */
-
-/* Destroy all popup packet windows. */
-void destroy_packet_wins(void);
-
-/* file_dlg.c */
-
-/* Destroy the save as dialog */
-void file_save_as_destroy(void);
-
-#define destroy_cfile_wins() \
- destroy_packet_wins(); \
- file_save_as_destroy();
#ifdef __cplusplus
}