ocarina/include/ocarina/footer.h
Bryan Schumaker d3c9301628 ocarina: Access footer through get_footer() and put_footer()
I combined reference counting with the get_footer() function to make
using it easier (no manual reference counting).  put_footer() will
deallocate the widget if the reference count is 0 (this is already done
by the g_object_unref() function) so it should work in a sane way.
2011-10-27 12:08:21 -04:00

10 lines
146 B
C

#ifndef OCARINA_FOOTER
#define OCARINA_FOOTER
#include <ocarina/gtk.h>
GtkWidget *get_footer();
void put_footer();
#endif /* OCARINA_FOOTER */