comparison libpurple/purple.h.in @ 21297:5b1acbab99cf

Make purple.h a generated file so plugins can just include this and never worry about defining PURPLE_PLUGINS ever again (unless they build libpurple without plugin support, which would be stupid)
author Stu Tomlinson <stu@nosnilmot.com>
date Sat, 10 Nov 2007 15:49:57 +0000
parents b4311f608d80
children 12aa1901081c
comparison
equal deleted inserted replaced
21296:8fe22cff1779 21297:5b1acbab99cf
1 /**
2 * @file purple.h Header files and defines
3 * This file contains all the necessary preprocessor directives to include
4 * libpurple's headers and other preprocessor directives required for plugins
5 * or UIs to build. Inlcuding this file eliminates the need to directly
6 * include any other libpurple files.
7 *
8 * @ingroup core libpurple
9 */
10
11 /* purple
12 *
13 * Purple is the legal property of its developers, whose names are too numerous
14 * to list here. Please refer to the COPYRIGHT file distributed with this
15 * source distribution.
16 *
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
30 */
31
32 #ifndef _PURPLE_PURPLE_H_
33 #define _PURPLE_PURPLE_H_
34
35 #include <glib.h>
36
37 #ifndef G_GNUC_NULL_TERMINATED
38 # if __GNUC__ >= 4
39 # define G_GNUC_NULL_TERMINATED __attribute__((__sentinel__))
40 # else
41 # define G_GNUC_NULL_TERMINATED
42 # endif
43 #endif
44
45 @PLUGINS_DEFINE@
46
47 #include <account.h>
48 #include <accountopt.h>
49 #include <blist.h>
50 #include <buddyicon.h>
51 #include <certificate.h>
52 #include <cipher.h>
53 #include <circbuffer.h>
54 #include <cmds.h>
55 #include <connection.h>
56 #include <conversation.h>
57 #include <core.h>
58 #include <debug.h>
59 #include <desktopitem.h>
60 #include <dnsquery.h>
61 #include <dnssrv.h>
62 #include <eventloop.h>
63 #include <ft.h>
64 #include <idle.h>
65 #include <imgstore.h>
66 #include <log.h>
67 #include <mime.h>
68 #include <nat-pmp.h>
69 #include <network.h>
70 #include <ntlm.h>
71 #include <notify.h>
72 #include <plugin.h>
73 #include <pluginpref.h>
74 #include <pounce.h>
75 #include <prefs.h>
76 #include <privacy.h>
77 #include <proxy.h>
78 #include <prpl.h>
79 #include <request.h>
80 #include <roomlist.h>
81 #include <savedstatuses.h>
82 #include <server.h>
83 #include <signals.h>
84 #include <status.h>
85 #include <stringref.h>
86 #include <stun.h>
87 #include <sound.h>
88 #include <sslconn.h>
89 #include <upnp.h>
90 #include <util.h>
91 #include <value.h>
92 #include <version.h>
93 #include <xmlnode.h>
94 #include <whiteboard.h>
95
96 #endif