/* * Copyright (c) 2002-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. */ #include "sm/generic.h" SM_RCSID("@(#)$Id: qm_iqdb.c,v 1.18 2005/02/18 02:34:16 ca Exp $") #include "qmgr.h" /* ** QM_IQDB_CREATE -- create a new entry for iqdb ** ** Parameters: ** key -- key ** len -- length of key ** value -- value to add ** ctx -- context ** type -- type of entry ** ** Returns: ** pointer to created data (use value directly) */ void * qm_iqdb_create(const char *key, uint len, void *value, void *ctx, uint type) { return value; }