aboutsummaryrefslogtreecommitdiff
path: root/test cases/frameworks/7 gnome/gir/private-function.h
blob: a3c73ffef018b4b5799fc374f0636d88689fcf47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef PRIVATE_FUNCTION_H
#define PRIVATE_FUNCTION_H

#if !defined (MESON_TEST)
#error "MESON_TEST not defined."
#endif

#include <glib-object.h>

G_BEGIN_DECLS

#define PRIVATE_TYPE_FUNCTION (private_function_get_type())
G_DECLARE_FINAL_TYPE (PrivateFunction, private_function, PRIVATE, FUNCTION, GObject)

PrivateFunction *private_function_new      (void);
int              private_function_return_0 (PrivateFunction *self);

G_END_DECLS

#endif /* PRIVATE_FUNCTION_H */