⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xdata.h

📁 这是一个完全开放的
💻 H
字号:
/* * jabberd - Jabber Open Source Server * Copyright (c) 2002-2003 Jeremie Miller, Thomas Muldowney, *                         Ryan Eatmon, Robert Norris * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA02111-1307USA *//* prototypes for xdata */#ifndef INCL_XDATA_H#define INCL_XDATA_H#include "util.h"typedef struct _xdata_st        *xdata_t;typedef struct _xdata_field_st  *xdata_field_t;typedef struct _xdata_option_st *xdata_option_t;typedef struct _xdata_item_st   *xdata_item_t;typedef enum {    xd_type_NONE,    xd_type_FORM,    xd_type_RESULT,    xd_type_SUBMIT,    xd_type_CANCEL} xdata_type_t;struct _xdata_st {    pool                p;    xdata_type_t        type;    char                *title;    char                *instructions;    xdata_field_t       fields, flast;    xdata_field_t       rfields, rflast;    /* reported fields */    xdata_item_t        items, ilast;};typedef enum {    xd_field_NONE,    xd_field_BOOLEAN,    xd_field_FIXED,    xd_field_HIDDEN,    xd_field_JID_MULTI,    xd_field_JID_SINGLE,    xd_field_LIST_MULTI,    xd_field_LIST_SINGLE,    xd_field_TEXT_MULTI,    xd_field_TEXT_PRIVATE,    xd_field_TEXT_SINGLE} xdata_field_type_t;struct _xdata_field_st {    pool                p;    xdata_field_type_t  type;    char                *var;    char                *label;    char                *desc;    int                 required;    char                **values;    int                 nvalues;    xdata_option_t      options, olast;    xdata_field_t       next;};struct _xdata_option_st {    pool                p;    char                *label;    char                *value;    xdata_option_t      next;};struct _xdata_item_st {    pool                p;    xdata_field_t       fields, flast;    xdata_item_t        next;};/** creation */xdata_t xdata_new(xdata_type_t type, char *title, char *instructions);xdata_t xdata_parse(nad_t nad, int root);/** new field */xdata_field_t xdata_field_new(xdata_t xd, xdata_field_type_t type, char *var, char *label, char *desc, int required);/** new item */xdata_item_t xdata_item_new(xdata_t xd);/** field insertion */void xdata_add_field(xdata_t xd, xdata_field_t xdf);void xdata_add_rfield(xdata_t xd, xdata_field_t xdf);void xdata_add_field_item(xdata_item_t item, xdata_field_t xdf);/** item insertion */void xdata_add_item(xdata_t xd, xdata_item_t xdi);/** option insertion */void xdata_add_option(xdata_field_t xdf, char *value, int lvalue, char *label, int llabel);/** value insertion */void xdata_add_value(xdata_field_t xdf, char *value, int vlen);#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -