PeasEngine *engine;
ZakConfi *confi;
PeasPluginInfo *ppinfo;
- GList *confis;
GNode *tree;
if (argc < 2)
engine = peas_engine_get_default ();
peas_engine_add_search_path (engine, "./plugins", NULL);
- confis = zak_confi_get_configs_list (argv[1], NULL);
- while (confis)
- {
- ZakConfiConfi *confi = (ZakConfiConfi *)confis->data;
-
- if (confi == NULL) break;
-
- g_printf ("NAME: %s\nDESCRIPTION: %s\n\n",
- confi->name,
- confi->description);
- confis = g_list_next (confis);
- }
-
confi = zak_confi_new (argv[1]);
if (confi == NULL)
{
--- /dev/null
+/*
+ * Copyright (C) 2005-2016 Andrea Zagli <azagli@libero.it>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#include <glib/gprintf.h>
+#include <libpeas/peas.h>
+
+#include "libzakconfi.h"
+
+int
+main (int argc, char **argv)
+{
+ PeasEngine *engine;
+ PeasPluginInfo *ppinfo;
+ GList *confis;
+
+ if (argc < 2)
+ {
+ g_error ("Usage: test_get_configs_list <connection string>");
+ return 0;
+ }
+
+ engine = peas_engine_get_default ();
+ peas_engine_add_search_path (engine, "./plugins", NULL);
+
+ confis = zak_confi_get_configs_list (argv[1], NULL);
+ while (confis)
+ {
+ ZakConfiConfi *confi = (ZakConfiConfi *)confis->data;
+
+ if (confi == NULL) break;
+
+ g_printf ("NAME: %s\nDESCRIPTION: %s\n\n",
+ confi->name,
+ confi->description);
+ confis = g_list_next (confis);
+ }
+
+ return 0;
+}