Convert all uses of PURPLE_UNSAFE_DEBUG to the new API I added.
[pidgin-git.git] / libpurple / purple.h.in
blobe050257de6f421897919a090bfbce3e714d7c807
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. Including this file eliminates the need to directly
6 * include any other libpurple files.
8 * @ingroup core libpurple
9 * @since 2.3.0
12 /* purple
14 * Purple is the legal property of its developers, whose names are too numerous
15 * to list here. Please refer to the COPYRIGHT file distributed with this
16 * source distribution.
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
33 #ifndef _PURPLE_PURPLE_H_
34 #define _PURPLE_PURPLE_H_
36 #include <glib.h>
38 #ifndef G_GNUC_NULL_TERMINATED
39 # if __GNUC__ >= 4
40 # define G_GNUC_NULL_TERMINATED __attribute__((__sentinel__))
41 # else
42 # define G_GNUC_NULL_TERMINATED
43 # endif
44 #endif
46 @PLUGINS_DEFINE@
48 #include <account.h>
49 #include <accountopt.h>
50 #include <blist.h>
51 #include <buddyicon.h>
52 #include <certificate.h>
53 #include <cipher.h>
54 #include <circbuffer.h>
55 #include <cmds.h>
56 #include <connection.h>
57 #include <conversation.h>
58 #include <core.h>
59 #include <debug.h>
60 #include <desktopitem.h>
61 #include <dnsquery.h>
62 #include <dnssrv.h>
63 #include <eventloop.h>
64 #include <ft.h>
65 #include <idle.h>
66 #include <imgstore.h>
67 #include <log.h>
68 #include <mime.h>
69 #include <nat-pmp.h>
70 #include <network.h>
71 #include <ntlm.h>
72 #include <notify.h>
73 #include <plugin.h>
74 #include <pluginpref.h>
75 #include <pounce.h>
76 #include <prefs.h>
77 #include <privacy.h>
78 #include <proxy.h>
79 #include <prpl.h>
80 #include <request.h>
81 #include <roomlist.h>
82 #include <savedstatuses.h>
83 #include <server.h>
84 #include <signals.h>
85 #include <status.h>
86 #include <stringref.h>
87 #include <stun.h>
88 #include <sound.h>
89 #include <sslconn.h>
90 #include <upnp.h>
91 #include <util.h>
92 #include <value.h>
93 #include <version.h>
94 #include <xmlnode.h>
95 #include <whiteboard.h>
97 #endif