Re: Timer start registration breaks the gtk_main()
- From: Ingo Krabbe <ikrabbe ask gmail com>
- To: gtk-list gnome org
- Subject: Re: Timer start registration breaks the gtk_main()
- Date: Sun, 27 Mar 2011 10:46:01 +0200
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]