summaryrefslogtreecommitdiff
path: root/new/unix/init.c
blob: b10c05b036c591560971f0a14e02171ed9dd0af4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 6 april 2015
#include "uipriv_unix.h"

uiInitOptions options;

const char *uiInit(uiInitOptions *o)
{
	GError *err = NULL;
	const char *msg;

	options = *o;
	if (gtk_init_with_args(NULL, NULL, NULL, NULL, NULL, &err) == FALSE) {
		msg = g_strdup(err->message);
		g_error_free(err);
		return msg;
	}
	return NULL;
}

void uiFreeInitError(const char *err)
{
	g_free((gpointer) err);
}