The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
356 B
30 lines
356 B
5 years ago
|
#include "bar.h"
|
||
|
#include "foo.h"
|
||
|
|
||
|
struct _BarBar
|
||
|
{
|
||
|
GObject parent_instance;
|
||
|
};
|
||
|
|
||
|
G_DEFINE_TYPE (BarBar, bar_bar, G_TYPE_OBJECT)
|
||
|
|
||
|
static void
|
||
|
bar_bar_class_init (BarBarClass *klass)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
bar_bar_init (BarBar *self)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* bar_bar_return_success:
|
||
|
*
|
||
|
* Returns 0
|
||
|
*/
|
||
|
int bar_bar_return_success(void)
|
||
|
{
|
||
|
return foo_foo_return_success();
|
||
|
}
|