Hi!
Actually, I translate the Gdk (basically needed for Gtk) to Pascal and I need help with the following C-Struct:
struct _GdkEventClient { ... GdkAtom message_type; gushort data_format; union { char b[20]; short s[10]; long l[5]; } data; };
How do I pass the union to a case-selector ?
Eike