diff options
author | Graeme Lunt <graeme.lunt@smhs.co.uk> | 2007-05-07 17:55:42 +0000 |
---|---|---|
committer | Graeme Lunt <graeme.lunt@smhs.co.uk> | 2007-05-07 17:55:42 +0000 |
commit | cf56e76be90d3541155b4d5fea4c335701f1de3a (patch) | |
tree | a9108ed6903c08b1d6d62590849e9b8d2196324e /register.h | |
parent | a38b44a6470d1e92b1bd0cb396d096675e5d2392 (diff) | |
download | wireshark-cf56e76be90d3541155b4d5fea4c335701f1de3a.tar.gz wireshark-cf56e76be90d3541155b4d5fea4c335701f1de3a.tar.bz2 wireshark-cf56e76be90d3541155b4d5fea4c335701f1de3a.zip |
Updated splash screen for Wireshark that shows the initialisation progress.
The splash screen shows a progress bar and a percentage complete - like the progress dialog.
As dissectors are initialised and handed off the name is shown. However, the names of plugin dissectors are not shown.
The update to the make-dissector-reg shell script has been tested, though I think generally the python version is used.
svn path=/trunk/; revision=21716
Diffstat (limited to 'register.h')
-rw-r--r-- | register.h | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/register.h b/register.h index 1d25c20264..b11420a717 100644 --- a/register.h +++ b/register.h @@ -25,7 +25,24 @@ #ifndef __REGISTER_H__ #define __REGISTER_H__ -extern void register_all_protocols(void); -extern void register_all_protocol_handoffs(void); +#include <glib.h> + +typedef enum { + RA_NONE, /* for initialization */ + RA_DISSECTORS, /* Initializing dissectors */ + RA_LISTENERS, /* Tap listeners */ + RA_REGISTER, /* register */ + RA_PLUGIN_REGISTER, /* plugin register */ + RA_HANDOFF, /* handoff */ + RA_PLUGIN_HANDOFF, /* plugin handoff */ + RA_PREFERENCES, /* module preferences */ + RA_CONFIGURATION /* configuration files */ +} register_action_e; + +typedef void (*register_cb)(register_action_e action, char *message, gpointer client_data); + +extern void register_all_protocols(register_cb cb, gpointer client_data); +extern void register_all_protocol_handoffs(register_cb cb, gpointer client_data); extern void register_all_tap_listeners(void); +extern gulong register_count(void); #endif /* __REGISTER_H__ */ |