File: test-interfaces.h

package info (click to toggle)
dbus-glib 0.114-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,096 kB
  • sloc: ansic: 23,493; sh: 4,634; makefile: 630; xml: 441
file content (50 lines) | stat: -rw-r--r-- 1,798 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* SPDX-License-Identifier: AFL-2.1 OR GPL-2.0-or-later */

#ifndef __TEST_INTERFACES_H__
#define __TEST_INTERFACES_H__

#include <glib-object.h>

#define TEST_TYPE_HELLO			(test_hello_get_type ())
#define TEST_HELLO(obj)			(G_TYPE_CHECK_INSTANCE_CAST ((obj), TEST_TYPE_HELLO, TestHello))
#define TEST_HELLO_IFACE(obj)		(G_TYPE_CHECK_CLASS_CAST ((obj), TEST_TYPE_HELLO, TestHelloIface))
#define TEST_IS_HELLO(obj)		(G_TYPE_CHECK_INSTANCE_TYPE ((obj), TEST_TYPE_HELLO))
#define TEST_HELLO_GET_IFACE(obj)	(G_TYPE_INSTANCE_GET_INTERFACE ((obj), TEST_TYPE_HELLO, TestHelloIface))

#define TEST_TYPE_GOODBYE		(test_goodbye_get_type ())
#define TEST_GOODBYE(obj)		(G_TYPE_CHECK_INSTANCE_CAST ((obj), TEST_TYPE_GOODBYE, TestGoodbye))
#define TEST_GOODBYE_IFACE(obj)		(G_TYPE_CHECK_CLASS_CAST ((obj), TEST_TYPE_GOODBYE, TestGoodbyeIface))
#define TEST_IS_GOODBYE(obj)		(G_TYPE_CHECK_INSTANCE_TYPE ((obj), TEST_TYPE_GOODBYE))
#define TEST_GOODBYE_GET_IFACE(obj)	(G_TYPE_INSTANCE_GET_INTERFACE ((obj), TEST_TYPE_GOODBYE, TestGoodbyeIface))

typedef struct _TestHello		TestHello; /* dummy */
typedef struct _TestHelloIface		TestHelloIface;

typedef struct _TestGoodbye		TestGoodbye; /* dummy */
typedef struct _TestGoodbyeIface	TestGoodbyeIface;

struct _TestHelloIface {
	GTypeInterface interface;
	
	/* VTable */
	gchar	*(* say_hello)		(TestHello *hello);
	
	/* Signals */
	void	 (* greetings)		(TestHello *hello);
};

struct _TestGoodbyeIface {
	GTypeInterface interface;
	
	/* VTable */
	gchar	*(* say_goodbye)	(TestGoodbye *goodbye);
};

GType    test_hello_get_type		(void) G_GNUC_CONST;
gchar	*test_hello_say_hello		(TestHello *hello);
void	 test_hello_greetings		(TestHello *hello);

GType    test_goodbye_get_type		(void) G_GNUC_CONST;
gchar	*test_goodbye_say_goodbye	(TestGoodbye *goodbye);

#endif