/* * Copyright (c) 2004-2006 Sendmail, Inc. and its suppliers. * All rights reserved. * * By using this file, you agree to the terms and conditions set * forth in the LICENSE file which can be found at the top level of * the sendmail distribution. * * $Id: mapclasses.h,v 1.5 2006/10/05 04:27:35 ca Exp $ */ #ifndef SM_MAPCLASSES_H #define SM_MAPCLASSES_H 1 #include "sm/generic.h" #include "sm/map-str.h" sm_ret_T sm_bdb_class_create(sm_maps_P _maps); sm_ret_T sm_bht_class_create(sm_maps_P _maps); sm_ret_T sm_passwd_class_create(sm_maps_P _maps); sm_ret_T sm_seq_class_create(sm_maps_P _maps); sm_ret_T sm_sockmap_class_create(sm_maps_P _maps); sm_ret_T sm_strmap_class_create(sm_maps_P _maps); #if MTA_USE_TINYCDB sm_ret_T sm_cdb_class_create(sm_maps_P _maps); #endif #endif /* SM_MAPCLASSES_H */