/* * 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:56 ca Exp $ */ #ifndef EDB_LOG_H #define EDB_LOG_H 1 #include "sm/generic.h" #include "sm/log.h" #if EDB_LOG_DEFINES sm_logcategory_T edb_lcats[] = { { "edb", 0 }, { NULL, 0 } }; sm_logmodule_T edb_lmods[] = { { "edb", 0 }, { NULL, 0 } }; #else /* EDB_LOG_DEFINES */ extern sm_logcategory_T edb_lcats[]; extern sm_logmodule_T edb_lmods[]; #endif /* EDB_LOG_DEFINES */ #define EDB_LCAT_EDB (&edb_lcats[0]) #define EDB_LMOD_EDB (&edb_lmods[0]) #endif /* EDB_LOG_H */