aboutsummaryrefslogtreecommitdiff
path: root/src/custom-service.c
blob: df3d58a915aa49fb787e356f6508fae96ba8dd21 (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-service.h"
#include "notification-item-client.h"
#include "custom-service-appstore.h"
#include "dbus-shared.h"

static GMainLoop * mainloop = NULL;
static CustomServiceAppstore * appstore = NULL;
static IndicatorService * service = NULL;
 
int
main (int argc, char ** argv)
{
	g_type_init();

	service = indicator_service_new(INDICATOR_CUSTOM_DBUS_ADDR);
	appstore = CUSTOM_SERVICE_APPSTORE(g_object_new(CUSTOM_SERVICE_APPSTORE_TYPE, NULL));

	mainloop = g_main_loop_new(NULL, FALSE);
	g_main_loop_run(mainloop);

	return 0;
}