annotate mcabber/mcabber/api.h @ 2140:77cb7f328723

Update API (xmpp_get_bookmark_password)
author Mikael Berthe <mikael@lilotux.net>
date Sun, 06 Jul 2014 14:48:51 +0200
parents f13f709400fa
children 0e8a25503ee1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1762
e7ce50fe19a9 Introduce mcabber/api.h
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
1 #ifndef __MCABBER_API_H__
e7ce50fe19a9 Introduce mcabber/api.h
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
2 #define __MCABBER_API_H__ 1
e7ce50fe19a9 Introduce mcabber/api.h
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
3
2037
96c0d8afdbe6 api.h should include glib header
Myhailo Danylenko <isbear@ukrpost.net>
parents: 2014
diff changeset
4 #include <glib.h>
1762
e7ce50fe19a9 Introduce mcabber/api.h
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
5 #include <mcabber/config.h> // For MCABBER_BRANCH
e7ce50fe19a9 Introduce mcabber/api.h
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
6
2140
77cb7f328723 Update API (xmpp_get_bookmark_password)
Mikael Berthe <mikael@lilotux.net>
parents: 2114
diff changeset
7 #define MCABBER_API_VERSION 31
2097
5150b3bf4c15 Post-0.10.3 changes
Mikael Berthe <mikael@lilotux.net>
parents: 2094
diff changeset
8 #define MCABBER_API_MIN 27
1762
e7ce50fe19a9 Introduce mcabber/api.h
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
9
2097
5150b3bf4c15 Post-0.10.3 changes
Mikael Berthe <mikael@lilotux.net>
parents: 2094
diff changeset
10 #define MCABBER_BRANCH_DEV 1
1990
504743d4782e Introduce MCABBER_BRANCH_DEV to ease module updates
Mikael Berthe <mikael@lilotux.net>
parents: 1988
diff changeset
11
2042
0cb8ea02e472 Make completion sorting order configurable
Myhailo Danylenko <isbear@ukrpost.net>
parents: 2037
diff changeset
12 // cmd_add returns gpointer id
1991
0450147afa05 Introduce MCABBER_API_HAVE_CMD_ID to ease module updates
Mikael Berthe <mikael@lilotux.net>
parents: 1990
diff changeset
13 #define MCABBER_API_HAVE_CMD_ID 1
2042
0cb8ea02e472 Make completion sorting order configurable
Myhailo Danylenko <isbear@ukrpost.net>
parents: 2037
diff changeset
14 // compl_new_category accepts flags argument
0cb8ea02e472 Make completion sorting order configurable
Myhailo Danylenko <isbear@ukrpost.net>
parents: 2037
diff changeset
15 #define MCABBER_API_HAVE_COMPL_FLAGS 1
1991
0450147afa05 Introduce MCABBER_API_HAVE_CMD_ID to ease module updates
Mikael Berthe <mikael@lilotux.net>
parents: 1990
diff changeset
16
1762
e7ce50fe19a9 Introduce mcabber/api.h
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
17 extern const gchar *mcabber_branch;
e7ce50fe19a9 Introduce mcabber/api.h
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
18 extern const guint mcabber_api_version;
e7ce50fe19a9 Introduce mcabber/api.h
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
19
e7ce50fe19a9 Introduce mcabber/api.h
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
20 #endif
1811
e6d355e50d7a Update Vim modelines
Mikael Berthe <mikael@lilotux.net>
parents: 1806
diff changeset
21 /* vim: set expandtab cindent cinoptions=>2\:2(0 sw=2 ts=2: For Vim users... */