Commit d924063f d924063f4b4aa3d1a95946e8c7d1c6f45dbde753 by Sergey Poznyakoff

(sql_interface): new decl

(mu_sql_expand_query): New proto.
1 parent 15060e45
1 /* GNU Mailutils -- a suite of utilities for electronic mail 1 /* GNU Mailutils -- a suite of utilities for electronic mail
2 Copyright (C) 2003 Free Software Foundation, Inc. 2 Copyright (C) 2003, 2005 Free Software Foundation, Inc.
3 3
4 This library is free software; you can redistribute it and/or 4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public 5 modify it under the terms of the GNU Lesser General Public
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
37 #include <mailutils/nls.h> 37 #include <mailutils/nls.h>
38 #include <mailutils/mailbox.h> 38 #include <mailutils/mailbox.h>
39 39
40 extern char *sql_interface;
40 extern char *mu_sql_getpwnam_query; 41 extern char *mu_sql_getpwnam_query;
41 extern char *mu_sql_getpass_query; 42 extern char *mu_sql_getpass_query;
42 extern char *mu_sql_getpwuid_query; 43 extern char *mu_sql_getpwuid_query;
...@@ -47,5 +48,4 @@ extern char *mu_sql_db; ...@@ -47,5 +48,4 @@ extern char *mu_sql_db;
47 extern char *mu_sql_socket; 48 extern char *mu_sql_socket;
48 extern int mu_sql_port; 49 extern int mu_sql_port;
49 50
50 extern char *mu_sql_expand_query __P((const char *query, const char *ustr));
51 51
......