warnlib.c 988 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
  2. #include "config.h"
  3. #include "warnlib.h"
  4. GQuark
  5. warnlib_unpaired_error_quark (void)
  6. {
  7. return g_quark_from_static_string ("warnlib-unpaired-error");
  8. }
  9. gboolean
  10. warnlib_throw_unpaired (GError **error)
  11. {
  12. g_set_error_literal (error, warnlib_unpaired_error_quark (), 0,
  13. "Unpaired error");
  14. return FALSE;
  15. }
  16. typedef WarnLibWhateverIface WarnLibWhateverInterface;
  17. G_DEFINE_INTERFACE (WarnLibWhatever, warnlib_whatever, G_TYPE_OBJECT)
  18. static void
  19. warnlib_whatever_default_init(WarnLibWhateverIface *iface)
  20. {
  21. }
  22. void
  23. warnlib_whatever_do_moo (WarnLibWhatever *self, int x, gpointer y)
  24. {
  25. WARNLIB_WHATEVER_GET_IFACE(self)->do_moo (self, x, y);
  26. }
  27. /**
  28. * warnlib_whatever_do_boo:
  29. * @self: a WarnLibWhatever
  30. * @x: x parameter
  31. * @y: y parameter
  32. *
  33. * Does boo.
  34. */
  35. void
  36. warnlib_whatever_do_boo (WarnLibWhatever *self, int x, gpointer y)
  37. {
  38. WARNLIB_WHATEVER_GET_IFACE(self)->do_boo (self, x, y);
  39. }