summaryrefslogtreecommitdiff
path: root/new/unix/init.c
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-04-16 20:33:28 -0400
committerPietro Gagliardi <[email protected]>2015-04-16 20:33:28 -0400
commite34c561ed5bedeb180437ec165882b98d70d38c1 (patch)
treed095e5db16d7a23e883526c8c1d3c524639c97cf /new/unix/init.c
parentde9d72299fb89a8b6cdc8963cd6b6ae708a81e80 (diff)
Split the rewrite into a new repository.
Diffstat (limited to 'new/unix/init.c')
-rw-r--r--new/unix/init.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/new/unix/init.c b/new/unix/init.c
deleted file mode 100644
index b10c05b..0000000
--- a/new/unix/init.c
+++ /dev/null
@@ -1,23 +0,0 @@
-// 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);
-}