00001 /* 00002 ** Copyright (C) 2005 by Kevin L. Mitchell <klmitch@mit.edu> 00003 ** 00004 ** This program is free software; you can redistribute it and/or modify 00005 ** it under the terms of the GNU General Public License as published by 00006 ** the Free Software Foundation; either version 2 of the License, or 00007 ** (at your option) any later version. 00008 ** 00009 ** This program is distributed in the hope that it will be useful, 00010 ** but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 ** GNU General Public License for more details. 00013 ** 00014 ** You should have received a copy of the GNU General Public License 00015 ** along with this program; if not, write to the Free Software 00016 ** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00017 ** 00018 ** @(#)$Id: _ev_gen_lookup.c,v 1.1 2005/07/11 23:34:32 klmitch Exp $ 00019 */ 00028 #include "event_int.h" 00029 00030 RCSTAG("@(#)$Id: _ev_gen_lookup.c,v 1.1 2005/07/11 23:34:32 klmitch Exp $"); 00031 00032 ev_err_t 00033 _ev_gen_lookup(ev_ctx_t *ctx, unsigned int gentype, ev_gendesc_t **gen) 00034 { 00035 ev_gens_t *gens; 00036 00037 ev_init(); /* make sure library is initialized... */ 00038 00039 if (gentype > ctx->ec_maxgen) /* have we registered anything that high? */ 00040 ev_return(ENOENT); /* nope, get out of here. */ 00041 00042 /* walk through list of generators... */ 00043 for (gens = ctx->ec_gens; gens; gens = gens->gs_next) { 00044 if (gentype >= gens->gs_first && /* have we found it? */ 00045 gentype < gens->gs_first + gens->gs_count) { 00046 *gen = &gens->gs_gens[gentype - gens->gs_first]; /* we have, return it */ 00047 ev_return(0); 00048 } 00049 00050 if (gentype < gens->gs_first || gentype < gens->gs_first + gens->gs_count) 00051 ev_return(ENOENT); /* short-circuit out of here... */ 00052 } 00053 00054 ev_return(ENOENT); /* failed to find the entry... */ 00055 }