aboutsummaryrefslogtreecommitdiff
path: root/tests/dummy-indicator-null.c
blob: ff99d712e3d55ef8f45b9d5691dfea5031b99345 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

#include "libindicator/indicator.h"

INDICATOR_SET_VERSION
INDICATOR_SET_NAME("dummy-indicator-null")

GtkLabel *
get_label (void)
{
	return NULL;
}

GtkImage *
get_icon (void)
{
	return NULL;
}

GtkMenu *
get_menu (void)
{
	return NULL;
}