comparison mcabber/mcabber/caps.h @ 1668:41c26b7d2890

Install mcabber headers * Change mcabber headers naming scheme * Move 'src/' -> 'mcabber/' * Add missing include <mcabber/config.h>'s * Create and install clean config.h version in 'include/' * Move "dirty" config.h version to 'mcabber/' * Add $(top_srcdir) to compiler include path * Update modules HOWTO
author Myhailo Danylenko <isbear@ukrpost.net>
date Mon, 18 Jan 2010 15:36:19 +0200
parents mcabber/src/caps.h@c5ee395fbc8c
children e6d355e50d7a
comparison
equal deleted inserted replaced
1667:8af0e0ad20ad 1668:41c26b7d2890
1 #ifndef __MCABBER_CAPS_H__
2 #define __MCABBER_CAPS_H__ 1
3
4 #include <glib.h>
5
6 void caps_init(void);
7 void caps_free(void);
8 void caps_add(char *hash);
9 int caps_has_hash(const char *hash);
10 void caps_set_identity(char *hash,
11 const char *category,
12 const char *name,
13 const char *type);
14 void caps_add_feature(char *hash, const char *feature);
15 int caps_has_feature(char *hash, char *feature);
16 void caps_foreach_feature(const char *hash, GFunc func, gpointer user_data);
17
18 char *caps_generate(void);
19
20 #endif /* __MCABBER_CAPS_H__ */
21
22 /* vim: set expandtab cindent cinoptions=>2\:2(0: For Vim users... */