00001 /* 00002 * Copyright (c) 2005-2006, Dan Ponte 00003 * 00004 * fields.h - fields stuff 00005 * 00006 * Redistribution and use in source and binary forms, with or without 00007 * modification, are permitted provided that the following conditions 00008 * are met: 00009 * 1. Redistributions of source code must retain the above copyright 00010 * notice, this list of conditions and the following disclaimer. 00011 * 2. Redistributions in binary form must reproduce the above copyright 00012 * notice, this list of conditions and the following disclaimer in the 00013 * documentation and/or other materials provided with the distribution. 00014 * 4. Neither the name of the author nor the names of his contributors 00015 * may be used to endorse or promote products derived from this software 00016 * without specific prior written permission. 00017 * 00018 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 00019 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00020 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00021 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 00022 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 00023 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 00024 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 00025 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00026 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 00027 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 00028 * SUCH DAMAGE. 00029 */ 00034 /* $Amigan: fakedbfs/include/fakedbfs/fields.h,v 1.7 2006/04/19 19:58:22 dcp1990 Exp $ */ 00035 #ifndef HAVE_FDBFS_FIELDS_H 00036 #define HAVE_FDBFS_FIELDS_H 00037 00045 fields_t* fdbfs_free_field(fields_t *e); 00046 00052 void fdbfs_free_field_list(fields_t *h); 00053 00061 fields_t* fdbfs_find_field_by_name(fields_t *h, const char *name); 00062 00070 fields_t* fdbfs_find_field_by_ehead(fields_t *h, struct EnumHead *e); 00071 00079 fields_t* fdbfs_find_field_by_ename(fields_t *h, const char *e); 00080 00088 fields_t* fdbfs_fields_from_dsp(fdbfs_t *f, const char *tsp); 00089 00095 void fdbfs_free_answer_t(answer_t *e); 00096 00107 int fdbfs_field_add_int(const char *name, const char *fmtname, fields_t **th, fields_t **tc, int value); 00108 00119 int fdbfs_field_add_string(const char *name, const char *fmtname, fields_t **th, fields_t **tc, char *value); 00120 00132 int fdbfs_field_add_image(const char *name, const char *fmtname, fields_t **th, fields_t **tc, void *value, size_t sz); 00133 00141 fields_t* fdbfs_find_field_by_next(fields_t *h, fields_t *next); 00142 00152 int fdbfs_fields_set_mime(const char *mimetype, fields_t **th, fields_t **tc); 00153 00168 int fdbfs_field_append(const char *name, const char *fmtname, fields_t **th, fields_t **tc, enum DataType type, void *value, size_t len); 00169 00170 00171 #endif
1.4.6