1 #ifndef authcustom_h 2 #define authcustom_h 3 4 /* 5 ** Copyright 1998 - 1999 Double Precision, Inc. See COPYING for 6 ** distribution information. 7 */ 8 9 /* Based on code by Luc Saillard <luc.saillard@alcove.fr>. */ 10 11 #if HAVE_CONFIG_H 12 #include "courier_auth_config.h" 13 #endif 14 15 16 struct authinfo; 17 18 int authcustomcommon(const char *, 19 const char *, int (*)(struct authinfo *, void *), void *); 20 21 void authcustomclose(); 22 23 #endif 24