comparison src/plugin.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 8f5ccf9e590a
children a3e60ff95b7d
comparison
equal deleted inserted replaced
5871:508adf90fbb9 5872:059d95c67cda
32 * -- Rob rob@marko.net 32 * -- Rob rob@marko.net
33 * 33 *
34 * Yeah, well now I'm re-writing a good portion of it! The perl stuff was 34 * Yeah, well now I'm re-writing a good portion of it! The perl stuff was
35 * a hack. Tsk tsk! -- Christian <chipx86@gnupdate.org> 35 * a hack. Tsk tsk! -- Christian <chipx86@gnupdate.org>
36 */ 36 */
37 37 #include "internal.h"
38 #ifdef HAVE_CONFIG_H 38
39 #include <config.h>
40 #endif
41
42 #include "gaim.h"
43 #include "accountopt.h" 39 #include "accountopt.h"
44 #include "prpl.h" 40 #include "debug.h"
45 #include "event.h" 41 #include "event.h"
46 #include "notify.h" 42 #include "notify.h"
47 43 #include "prefs.h"
48 #include <string.h> 44 #include "prpl.h"
49 45 #include "request.h"
50 #include <sys/types.h>
51 #include <sys/stat.h>
52
53 #include <unistd.h>
54 #include <stdio.h>
55 #include <stdlib.h>
56
57 #ifdef _WIN32
58 #include "win32dep.h"
59 #endif
60 46
61 #ifdef _WIN32 47 #ifdef _WIN32
62 # define PLUGIN_EXT ".dll" 48 # define PLUGIN_EXT ".dll"
63 #else 49 #else
64 # define PLUGIN_EXT ".so" 50 # define PLUGIN_EXT ".so"