aboutsummaryrefslogtreecommitdiffstats
path: root/epan/funnel.h
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2006-10-05 16:25:13 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2006-10-05 16:25:13 +0000
commit8dee75cf6892c6574fedc0970402d5c4a10b197d (patch)
tree40f10cecb754ffb0cb6b4ef9a6936774a85db8ad /epan/funnel.h
parent60193f0ae7b15864f65c193a410d774ac20c531f (diff)
have the funnel client passing the destructors for btn data structures to the funnel.
Although useless in practice, it is better to implement it this way... the funnel mini gui might be used by other modules in the future. svn path=/trunk/; revision=19440
Diffstat (limited to 'epan/funnel.h')
-rw-r--r--epan/funnel.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/funnel.h b/epan/funnel.h
index 2c1bf7afe9..09be5448eb 100644
--- a/epan/funnel.h
+++ b/epan/funnel.h
@@ -49,6 +49,8 @@ typedef struct _funnel_bt_t {
funnel_text_window_t* tw;
funnel_bt_cb_t func;
void* data;
+ void (*free)(void*);
+ void (*free_data)(void*);
} funnel_bt_t;
typedef struct _funnel_ops_t {