/* * Copyright (c) 2005 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: log.h,v 1.2 2005/03/18 21:27:55 ca Exp $ */ #ifndef ACTDB_LOG_H #define ACTDB_LOG_H 1 #include "sm/generic.h" #include "sm/log.h" #if ACTDB_LOG_DEFINES sm_logcategory_T actdb_lcats[] = { { "actdb", 0 }, { NULL, 0 } }; sm_logmodule_T actdb_lmods[] = { { "actdb", 0 }, { NULL, 0 } }; #else /* ACTDB_LOG_DEFINES */ extern sm_logcategory_T actdb_lcats[]; extern sm_logmodule_T actdb_lmods[]; #endif /* ACTDB_LOG_DEFINES */ #define ACTDB_LCAT_ACTDB (&actdb_lcats[0]) #define ACTDB_LMOD_ACTDB (&actdb_lmods[0]) #endif /* ACTDB_LOG_H */