Statistics
| Branch: | Tag: | Revision:

root / common.h @ cd75287ef15854838c5bd632a56eb0441c5e74ac

History | View | Annotate | Download (1.5 KB)

1
/* File: common.h
2
   Time-stamp: <2012-04-05 13:00:29 gawen>
3
4
   Copyright (C) 2010 David Hauweele <david@hauweele.net>
5
   Copyright (C) 2008,2009 Craig Harding <craigwharding@gmail.com>
6
                           Wolter Hellmund <wolterh@gmail.com>
7
8
   This program is free software: you can redistribute it and/or modify
9
   it under the terms of the GNU General Public License as published by
10
   the Free Software Foundation, either version 3 of the License, or
11
   (at your option) any later version.
12
13
   This program is distributed in the hope that it will be useful,
14
   but WITHOUT ANY WARRANTY; without even the implied warranty of
15
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
   GNU General Public License for more details.
17
18
   You should have received a copy of the GNU General Public License
19
   along with this program. If not, see <http://www.gnu.org/licenses/>. */
20
21
#ifndef _COMMON_H_
22
#define _COMMON_H_
23
24
/* define for NLS */
25
#define GETTEXT_PACKAGE "pidgin-pbar"
26
27
/* common include for pidgin and gtk */
28
29
#include <string.h>
30
#include <glib.h>
31
#include <glib/gi18n-lib.h>
32
#include <gtk/gtk.h>
33
34
#include "pidginstock.h"
35
#include "plugin.h"
36
#include "signals.h"
37
#include "gtkblist.h"
38
#include "gtkstatusbox.h"
39
#include "gtkprefs.h"
40
#include "prpl.h"
41
#include "request.h"
42
#include "debug.h"
43
#include "gtkutils.h"
44
#include "buddyicon.h"
45
#include "version.h"
46
#include "gtkplugin.h"
47
48
#ifdef _WIN32
49
# include "win32dep.h"
50
#endif /* _WIN32 */
51
52
#endif /* _COMMON_H_ */