On Apr 14, 2009, at 9:38 AM, Guy Harris wrote:

>       #ifndef G_GUINT4_CONSTANT
>       #define G_GUINT64_CONSTANT(c)   something that sticks a "U" immediately
> after the constant and passes it to G_GINT64_CONSTANT()
>       #endif
>
> in some appropriate header file if there's a way to do that with the C
> preprocessor.

        #ifndef G_GUINT64_CONSTANT
        #define G_GUINT64_CONSTANT(val)         G_GINT64_CONSTANT(val##U)
        #endif
___________________________________________________________________________
Sent via:    Wireshark-dev mailing list <[email protected]>
Archives:    http://www.wireshark.org/lists/wireshark-dev
Unsubscribe: https://wireshark.org/mailman/options/wireshark-dev
             mailto:[email protected]?subject=unsubscribe

Reply via email to