replied too fast...

----- Forwarded message from Ingo Krabbe <[email protected]> -----

> 
> static frame_ReadData(CFrame *f) { return f->ReadData(); }

Actually and fully you will need

static gboolean frame_ReadData(CFrame* f) { return f->ReadData(); }

Note that frame_ReadData is a C function, so that static means something
different than in the C++ class context.

Actually nothing speaks against using an "extern" function, though
it might make not much sense to export such a simple, locally used
function.

----- End forwarded message -----
_______________________________________________
gtk-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/gtk-list

Reply via email to