Mercurial > pidgin
annotate src/win32/win32dep.h @ 3823:5dc82aec40ca
[gaim-migrate @ 3972]
hmm
committer: Tailor Script <tailor@pidgin.im>
author | Rob Flynn <gaim@robflynn.com> |
---|---|
date | Wed, 30 Oct 2002 00:10:13 +0000 |
parents | 813304a57f88 |
children | 41e7544a9c67 |
rev | line source |
---|---|
3630 | 1 /* |
2 * win32dep.h | |
3 */ | |
4 | |
5 #ifndef _WIN32DEP_H_ | |
6 #define _WIN32DEP_H_ | |
3712
ac6ca3890c53
[gaim-migrate @ 3845]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
7 #include <winsock.h> |
3630 | 8 #include <gdk/gdkevents.h> |
3712
ac6ca3890c53
[gaim-migrate @ 3845]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
9 #include "winerror.h" |
3778
813304a57f88
[gaim-migrate @ 3918]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3712
diff
changeset
|
10 #include "libc_interface.h" |
813304a57f88
[gaim-migrate @ 3918]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3712
diff
changeset
|
11 |
3630 | 12 |
3712
ac6ca3890c53
[gaim-migrate @ 3845]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
13 /* |
ac6ca3890c53
[gaim-migrate @ 3845]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
14 * PROTOS |
ac6ca3890c53
[gaim-migrate @ 3845]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
15 */ |
ac6ca3890c53
[gaim-migrate @ 3845]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
16 |
ac6ca3890c53
[gaim-migrate @ 3845]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
17 /* win32dep.c */ |
3630 | 18 extern char* wgaim_install_dir(void); |
19 extern char* wgaim_lib_dir(void); | |
20 extern char* wgaim_locale_dir(void); | |
21 extern GdkFilterReturn wgaim_window_filter(GdkXEvent *xevent, | |
22 GdkEvent *event, | |
23 gpointer data); | |
24 extern void wgaim_init(void); | |
25 | |
3712
ac6ca3890c53
[gaim-migrate @ 3845]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
26 /* |
ac6ca3890c53
[gaim-migrate @ 3845]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
27 * MACROS |
ac6ca3890c53
[gaim-migrate @ 3845]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
28 */ |
ac6ca3890c53
[gaim-migrate @ 3845]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
29 |
ac6ca3890c53
[gaim-migrate @ 3845]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
30 /* |
ac6ca3890c53
[gaim-migrate @ 3845]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
31 * Gaim specific |
ac6ca3890c53
[gaim-migrate @ 3845]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
32 */ |
3630 | 33 #define DATADIR wgaim_install_dir() |
3712
ac6ca3890c53
[gaim-migrate @ 3845]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
34 #define LIBDIR wgaim_lib_dir() |
ac6ca3890c53
[gaim-migrate @ 3845]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
35 #define LOCALEDIR wgaim_locale_dir() |
3630 | 36 |
3712
ac6ca3890c53
[gaim-migrate @ 3845]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
37 /* |
ac6ca3890c53
[gaim-migrate @ 3845]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
38 * Gtk specific |
ac6ca3890c53
[gaim-migrate @ 3845]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
39 */ |
3630 | 40 /* Needed for accessing global variables outside the current module */ |
41 #ifdef G_MODULE_IMPORT | |
42 #undef G_MODULE_IMPORT | |
43 #endif | |
44 #define G_MODULE_IMPORT __declspec(dllimport) | |
45 | |
46 | |
47 #endif /* _WIN32DEP_H_ */ | |
48 |