Peter Clifton wrote:
The error message is giving you the hint you need.. The g_type system needs to be initialised before you can use it, add a call to: g_type_init (); Before your point_new () call, and it should be a lot happier.
Thanks a lot ;-) It works ;-)