dep2.h 425 B

12345678910111213141516171819202122
  1. #ifndef MESON_DEP2_H
  2. #define MESON_DEP2_H
  3. #if !defined (MESON_TEST)
  4. #error "MESON_TEST not defined."
  5. #endif
  6. #include <glib-object.h>
  7. G_BEGIN_DECLS
  8. #define MESON_TYPE_DEP2 (meson_dep2_get_type())
  9. G_DECLARE_FINAL_TYPE (MesonDep2, meson_dep2, MESON, DEP2, GObject)
  10. MesonDep2 *meson_dep2_new (const gchar *msg);
  11. const gchar *meson_dep2_return_message (MesonDep2 *self);
  12. G_END_DECLS
  13. #endif /* MESON_DEP2_H */