Mercurial > pidgin
comparison src/protocols/toc/toc.c @ 5872:059d95c67cda
[gaim-migrate @ 6304]
The legendary Header File Cleanup! Files now only include what they need.
This should reduce the number of files that must recompile when a header
file changes. It's a lot nicer. Trust me on it. I also added a couple new
header files. I hope I didn't break TOO much!
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Sat, 14 Jun 2003 23:21:02 +0000 |
| parents | 43ea75092684 |
| children | 7d385de2f9cd |
comparison
equal
deleted
inserted
replaced
| 5871:508adf90fbb9 | 5872:059d95c67cda |
|---|---|
| 16 * You should have received a copy of the GNU General Public License | 16 * You should have received a copy of the GNU General Public License |
| 17 * along with this program; if not, write to the Free Software | 17 * along with this program; if not, write to the Free Software |
| 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 19 * | 19 * |
| 20 */ | 20 */ |
| 21 | 21 #include "internal.h" |
| 22 | 22 |
| 23 | 23 #include "account.h" |
| 24 #ifdef HAVE_CONFIG_H | 24 #include "accountopt.h" |
| 25 #include <config.h> | 25 #include "conversation.h" |
| 26 #endif | 26 #include "debug.h" |
| 27 | |
| 28 #ifndef _WIN32 | |
| 29 #include <netdb.h> | |
| 30 #include <unistd.h> | |
| 31 #include <netinet/in.h> | |
| 32 #include <arpa/inet.h> | |
| 33 #include <sys/socket.h> | |
| 34 #else | |
| 35 #include <winsock.h> | |
| 36 #endif | |
| 37 | |
| 38 #include <gtk/gtk.h> | |
| 39 #include <errno.h> | |
| 40 #include <string.h> | |
| 41 #include <stdlib.h> | |
| 42 #include <stdio.h> | |
| 43 #include <time.h> | |
| 44 #include <sys/types.h> | |
| 45 #include <sys/stat.h> | |
| 46 #include "prpl.h" | 27 #include "prpl.h" |
| 47 #include "accountopt.h" | |
| 48 #include "multi.h" | 28 #include "multi.h" |
| 29 #include "notify.h" | |
| 30 #include "proxy.h" | |
| 31 #include "request.h" | |
| 32 #include "util.h" | |
| 33 | |
| 34 /* XXX */ | |
| 49 #include "gaim.h" | 35 #include "gaim.h" |
| 50 #include "proxy.h" | 36 #include "ui.h" |
| 51 | |
| 52 #ifdef _WIN32 | |
| 53 #include "win32dep.h" | |
| 54 #endif | |
| 55 | 37 |
| 56 static GaimPlugin *my_protocol = NULL; | 38 static GaimPlugin *my_protocol = NULL; |
| 57 | 39 |
| 58 #define REVISION "penguin" | 40 #define REVISION "penguin" |
| 59 | 41 |
