Re: Timer start registration breaks the gtk_main()



replied too fast...

----- Forwarded message from Ingo Krabbe <ikrabbe ask gmail com> -----

> 
> 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 -----


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]