Hello, I am writing a dissector in C and I donwloaded the last version of the source from svn. I want to use the proto_tree_append_text to add a label to an item. My compiler said that this function is not defined. This are are my include at the begin of my c file:
Somebody can help me and tell what include I should add? Thanks. Sandrine. asked 17 Dec ‘10, 05:39 Sandrine Bea… |
One Answer:
The function to use would be proto_item_append_text and is declared in epan/proto.h:
Hope this helps :-) answered 17 Dec '10, 07:17 SYN-bit ♦♦ |