aboutsummaryrefslogtreecommitdiffstats
path: root/ui_util.h
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-12-05 22:45:54 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-12-05 22:45:54 +0000
commit8dab6be33cdae8861bb780f4e9085905d0a34a01 (patch)
tree5c99b327ccfed5da93d310f45963adcea6e44ab5 /ui_util.h
parenta7dc7c2922ac93ba7b36870664ccc7d6b4f63e66 (diff)
move some GTK only function declarations from ui_util.h to the appropriate header files in the gtk dir, as these declarations are obsolete and only confuses (at least me)
svn path=/trunk/; revision=16687
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
}