auth-module.c revision 9e708a17f984ef7690ff2468ec19ad62c95b1ac2
/* Copyright (C) 2003 Timo Sirainen */
#include "lib.h"
#ifdef HAVE_MODULES
#include "auth-module.h"
#include <dlfcn.h>
struct auth_module {
struct auth_module *next;
int refcount;
char *name;
void *handle;
};
{
struct auth_module *module;
return module;
}
return NULL;
}
{
struct auth_module *module;
const char *path;
void *handle;
return module;
}
return NULL;
}
return module;
}
{
struct auth_module **pos;
return;
break;
}
}
}
{
const char *error;
void *ret;
return ret;
}
#endif