Frameworks/libpurple.framework/Versions/0.6.2/Headers/purple.h
changeset 2592 e8d15275025e
parent 1739 8b0daad9656c
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/Frameworks/libpurple.framework/Versions/0.6.2/Headers/purple.h	Fri Aug 21 13:25:11 2009 -0700
     1.3 @@ -0,0 +1,105 @@
     1.4 +/**
     1.5 + * @file purple.h  Header files and defines
     1.6 + * This file contains all the necessary preprocessor directives to include
     1.7 + * libpurple's headers and other preprocessor directives required for plugins
     1.8 + * or UIs to build.  Including this file eliminates the need to directly
     1.9 + * include any other libpurple files.
    1.10 + *
    1.11 + * @ingroup core libpurple
    1.12 + * @since 2.3.0
    1.13 + */
    1.14 +
    1.15 +/* purple
    1.16 + *
    1.17 + * Purple is the legal property of its developers, whose names are too numerous
    1.18 + * to list here.  Please refer to the COPYRIGHT file distributed with this
    1.19 + * source distribution.
    1.20 + *
    1.21 + * This program is free software; you can redistribute it and/or modify
    1.22 + * it under the terms of the GNU General Public License as published by
    1.23 + * the Free Software Foundation; either version 2 of the License, or
    1.24 + * (at your option) any later version.
    1.25 + *
    1.26 + * This program is distributed in the hope that it will be useful,
    1.27 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.28 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.29 + * GNU General Public License for more details.
    1.30 + *
    1.31 + * You should have received a copy of the GNU General Public License
    1.32 + * along with this program; if not, write to the Free Software
    1.33 + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
    1.34 + */
    1.35 +
    1.36 +#ifndef _PURPLE_PURPLE_H_
    1.37 +#define _PURPLE_PURPLE_H_
    1.38 +
    1.39 +#include <glib.h>
    1.40 +
    1.41 +#ifndef G_GNUC_NULL_TERMINATED
    1.42 +#	if     __GNUC__ >= 4
    1.43 +#		define G_GNUC_NULL_TERMINATED __attribute__((__sentinel__))
    1.44 +#	else
    1.45 +#		define G_GNUC_NULL_TERMINATED
    1.46 +#	endif
    1.47 +#endif
    1.48 +
    1.49 +#undef PURPLE_PLUGINS
    1.50 +
    1.51 +#include <account.h>
    1.52 +#include <accountopt.h>
    1.53 +#include <blist.h>
    1.54 +#include <buddyicon.h>
    1.55 +#include <certificate.h>
    1.56 +#include <cipher.h>
    1.57 +#include <circbuffer.h>
    1.58 +#include <cmds.h>
    1.59 +#include <connection.h>
    1.60 +#include <conversation.h>
    1.61 +#include <core.h>
    1.62 +#include <debug.h>
    1.63 +#include <desktopitem.h>
    1.64 +#include <dnsquery.h>
    1.65 +#include <dnssrv.h>
    1.66 +#include <eventloop.h>
    1.67 +#include <ft.h>
    1.68 +#include <idle.h>
    1.69 +#include <imgstore.h>
    1.70 +#include <log.h>
    1.71 +#include <media.h>
    1.72 +#include <mediamanager.h>
    1.73 +#include <mime.h>
    1.74 +#include <nat-pmp.h>
    1.75 +#include <network.h>
    1.76 +#include <notify.h>
    1.77 +#include <ntlm.h>
    1.78 +#include <plugin.h>
    1.79 +#include <pluginpref.h>
    1.80 +#include <pounce.h>
    1.81 +#include <prefs.h>
    1.82 +#include <privacy.h>
    1.83 +#include <proxy.h>
    1.84 +#include <prpl.h>
    1.85 +#include <request.h>
    1.86 +#include <roomlist.h>
    1.87 +#include <savedstatuses.h>
    1.88 +#include <server.h>
    1.89 +#include <signals.h>
    1.90 +#include <smiley.h>
    1.91 +#include <sound.h>
    1.92 +#include <sound-theme.h>
    1.93 +#include <sound-theme-loader.h>
    1.94 +#include <sslconn.h>
    1.95 +#include <status.h>
    1.96 +#include <stringref.h>
    1.97 +#include <stun.h>
    1.98 +#include <theme.h>
    1.99 +#include <theme-loader.h>
   1.100 +#include <theme-manager.h>
   1.101 +#include <upnp.h>
   1.102 +#include <util.h>
   1.103 +#include <value.h>
   1.104 +#include <version.h>
   1.105 +#include <whiteboard.h>
   1.106 +#include <xmlnode.h>
   1.107 +
   1.108 +#endif