# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
-AC_INIT([libaute], [0.1.0], [azagli@libero.it])
+AC_INIT([libaute], [0.1.1], [azagli@libero.it])
AC_CONFIG_SRCDIR([src/aute.c])
AC_CONFIG_HEADER([config.h])
/*
- * Copyright (C) 2005-2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2005-2013 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
return ret;
}
+/**
+ * aute_autentica_get_password:
+ * @aute:
+ * @password:
+ *
+ * Returns: il nome utente se l'autenticazione va a buon fine;
+ * stringa vuota ("") se viene premuto "Annulla"; NULL in caso di errore.
+ * Nel parametro @password ritorna la password inserita.
+ */
+gchar
+*aute_autentica_get_password (Aute *aute, gchar **password)
+{
+ gchar *(*autentica_get_password) (GSList *parameters, gchar **password);
+ gchar *ret;
+
+ AutePrivate *priv = AUTE_GET_PRIVATE (aute);
+
+ g_return_val_if_fail (priv->module != NULL, NULL);
+
+ ret = NULL;
+
+ /* loading the function */
+ if (!g_module_symbol (priv->module, "autentica_get_password", (gpointer *)&autentica_get_password))
+ {
+ /* TO DO */
+ g_warning ("Error g_module_symbol\n");
+ return NULL;
+ }
+
+ /* calling plugin's function */
+ ret = (*autentica_get_password) (priv->parameters, password);
+
+ return ret;
+}
+
/**
* aute_autentica:
* @aute:
/*
- * Copyright 2005-2010 Andrea Zagli <azagli@libero.it>
+ * Copyright 2005-2013 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
gboolean aute_set_config (Aute *aute, GSList *parameters);
gchar *aute_autentica (Aute *aute);
+gchar *aute_autentica_get_password (Aute *aute, gchar **password);
GtkWidget *aute_get_management_gui (Aute *aute);