boolean -> gboolean

svn path=/trunk/; revision=25344
This commit is contained in:
Bill Meier 2008-05-21 16:56:50 +00:00
parent bf018e2a96
commit 59d2c9eb92
2 changed files with 2 additions and 2 deletions

View File

@ -1865,7 +1865,7 @@ void register_postdissector(dissector_handle_t handle) {
num_of_postdissectors++;
}
boolean
gboolean
have_postdissector() {
return (num_of_postdissectors > 0);
}

View File

@ -405,7 +405,7 @@ extern void dissector_dump_decodes(void);
* dissector has been called.
*/
extern void register_postdissector(dissector_handle_t);
extern boolean have_postdissector();
extern gboolean have_postdissector();
extern void call_all_postdissectors(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree);
#ifdef __cplusplus