Wireshark-dev: Re: [Wireshark-dev] Problems in IO Graphs with time values greater than ~429 seconds
From: Guy Harris <
guy@xxxxxxxxxxxx>
Date: Mon, 03 Dec 2007 13:11:18 -0800
Stig Bjørlykke wrote:
And then the next question:
What to do with this GUINT_TO_POINTER when yscale_max changes to
guint64?
OBJECT_SET_DATA(menu_item, "yscale_max",
GUINT_TO_POINTER(yscale_max[i]));
OBJECT_SET_DATA(menu_item, "yscale_max", (void *)&yscale_max[i]));
and the equivalent changes for OBJECT_GET_DATA; yscale_max is a static
array.