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.
31 lines
357 B
31 lines
357 B
4 years ago
|
#include <foo.h>
|
||
|
|
||
|
|
||
|
struct _FooObj {
|
||
|
GObject parent;
|
||
|
int dummy;
|
||
|
};
|
||
|
|
||
|
G_DEFINE_TYPE(FooObj, foo_obj, G_TYPE_OBJECT)
|
||
|
|
||
|
static void foo_obj_init (FooObj *self)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
static void foo_obj_class_init (FooObjClass *klass)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* foo_do_something:
|
||
|
* @self: self
|
||
|
*
|
||
|
* Useless function.
|
||
|
*
|
||
|
* Returns: 0.
|
||
|
*/
|
||
|
int foo_do_something(FooObj *self)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|