X-Git-Url: https://git.distorted.org.uk/~mdw/ezmlm/blobdiff_plain/5b62e993b0af39700031c2875d7f6654e6a02850..f8beb284087c279acfb30506f5bb32baa4949b44:/sub_std/opensql.c diff --git a/sub_std/opensql.c b/sub_std/opensql.c new file mode 100644 index 0000000..9601da3 --- /dev/null +++ b/sub_std/opensql.c @@ -0,0 +1,27 @@ +/*$Id: opensql.c,v 1.3 1999/10/12 23:38:36 lindberg Exp $*/ +/*$Name: ezmlm-idx-040 $*/ +#include "stralloc.h" +#include "strerr.h" +#include "errtxt.h" +#include "subscribe.h" + +static stralloc myp = {0}; +static stralloc ers = {0}; +static stralloc fn = {0}; +static stralloc ourdb = {0}; +static char *ourtable = (char *) 0; + +char *opensql(dbname,table) +char *dbname; /* database directory */ +char **table; /* table root_name */ + +{ + return 0; +} + +void closesql() +/* close connection to SQL server, if open */ +{ + return; +} +