On 15 Mar 2002, Jens Luedicke wrote:

> The following code compiles, but doesn't work:

Try compiling it with "perl -MInline=INFO,FORCE,NOCLEAN script.pl".
You'll see a list of functions bound to Perl.  My guess is that these two
won't be in that list:

> extern void gtk_widget_show(GtkWidget *widget);
> extern GtkWidget* gtk_window_new(GtkWindowType type);

You'll need to provide a typemap for GtkWindowType and GtkWidget so that
Perl will know how to map them to and from scalars.

-sam

Reply via email to