comparison src/win32/win32dep.h @ 5913:9657e243d001

[gaim-migrate @ 6345] win32 adjustments for header re-org, and GPL header insertions where missing committer: Tailor Script <tailor@pidgin.im>
author Herman Bloggs <hermanator12002@yahoo.com>
date Tue, 17 Jun 2003 18:56:53 +0000
parents a96653493416
children 65fad4831077
comparison
equal deleted inserted replaced
5912:b3c412884a22 5913:9657e243d001
1 /* 1 /*
2 * win32dep.h 2 * gaim
3 *
4 * File: win32dep.h
5 *
6 * Copyright (C) 2002-2003, Herman Bloggs <hermanator12002@yahoo.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 2 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, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
3 */ 22 */
4
5 #ifndef _WIN32DEP_H_ 23 #ifndef _WIN32DEP_H_
6 #define _WIN32DEP_H_ 24 #define _WIN32DEP_H_
7 #include <winsock.h> 25 #include <winsock.h>
8 #include <process.h> 26 #include <process.h>
9 #include <gtk/gtk.h> 27 #include <gtk/gtk.h>
50 68
51 /* Temp solution for gtk_window_get_pos & gtk_window_move conflict */ 69 /* Temp solution for gtk_window_get_pos & gtk_window_move conflict */
52 #define gtk_window_move( window, x, y ) \ 70 #define gtk_window_move( window, x, y ) \
53 wgaim_gtk_window_move( ## window ##, ## x ##, ## y ## ) 71 wgaim_gtk_window_move( ## window ##, ## x ##, ## y ## )
54 72
55 /*
56 * Gtk specific
57 */
58 /* Needed for accessing global variables outside the current module */
59 #ifdef G_MODULE_IMPORT
60 #undef G_MODULE_IMPORT
61 #endif
62 #define G_MODULE_IMPORT __declspec(dllimport)
63
64
65 #endif /* _WIN32DEP_H_ */ 73 #endif /* _WIN32DEP_H_ */
66 74