diff options
author | James Booth <boothj5@gmail.com> | 2016-04-26 21:34:06 +0100 |
---|---|---|
committer | Dominik Heidler <dominik@heidler.eu> | 2016-04-26 23:50:56 +0200 |
commit | 4ca6296fb7fe57d24b809939473360d1a52b3d13 (patch) | |
tree | 5ec313f4b3785c6565f3db0b9dbd0d1e3d4dd207 /src/xmpp | |
parent | 65960dfbb23b0541e5148d2f14dfc5fc57c390bd (diff) | |
download | profani-tty-4ca6296fb7fe57d24b809939473360d1a52b3d13.tar.gz |
Fix OSX compile
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/xmpp.h | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/src/xmpp/xmpp.h b/src/xmpp/xmpp.h index b9d84074..ea8a6e1d 100644 --- a/src/xmpp/xmpp.h +++ b/src/xmpp/xmpp.h @@ -101,48 +101,6 @@ typedef struct disco_info_t { GHashTable *features; } DiscoInfo; -typedef enum { - FIELD_HIDDEN, - FIELD_TEXT_SINGLE, - FIELD_TEXT_PRIVATE, - FIELD_TEXT_MULTI, - FIELD_BOOLEAN, - FIELD_LIST_SINGLE, - FIELD_LIST_MULTI, - FIELD_JID_SINGLE, - FIELD_JID_MULTI, - FIELD_FIXED, - FIELD_UNKNOWN -} form_field_type_t; - -typedef struct form_option_t { - char *label; - char *value; -} FormOption; - -typedef struct form_field_t { - char *label; - char *type; - form_field_type_t type_t; - char *var; - char *description; - gboolean required; - GSList *values; - GSList *options; - Autocomplete value_ac; -} FormField; - -typedef struct data_form_t { - char *type; - char *title; - char *instructions; - GSList *fields; - GHashTable *var_to_tag; - GHashTable *tag_to_var; - Autocomplete tag_ac; - gboolean modified; -} DataForm; - // connection functions void jabber_init(void); jabber_conn_status_t jabber_connect_with_details(const char *const jid, const char *const passwd, |