Mon, 18 Sep 2006 21:55:06 +0000
[gaim-migrate @ 17316]
Fix the size remembering of the entry imhtml. Also, add functionality
such that the buddy icon does not affect the remembered size
| 14286 | 1 | /* |
| 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 | * | |
| 22 | */ | |
| 23 | #ifndef _GTKWIN32DEP_H_ | |
| 24 | #define _GTKWIN32DEP_H_ | |
|
14638
b0fa76dac93f
[gaim-migrate @ 17300]
Daniel Atallah <datallah@pidgin.im>
parents:
14636
diff
changeset
|
25 | #include <windows.h> |
|
b0fa76dac93f
[gaim-migrate @ 17300]
Daniel Atallah <datallah@pidgin.im>
parents:
14636
diff
changeset
|
26 | #include <gtk/gtk.h> |
| 14286 | 27 | |
| 28 | HINSTANCE gtkwgaim_hinstance(void); | |
| 29 | ||
| 30 | /* Utility */ | |
| 31 | int gtkwgaim_gz_decompress(const char* in, const char* out); | |
| 32 | int gtkwgaim_gz_untar(const char* filename, const char* destdir); | |
|
14636
5306c329992c
[gaim-migrate @ 17298]
Daniel Atallah <datallah@pidgin.im>
parents:
14286
diff
changeset
|
33 | void gtkwgaim_ensure_onscreen(GtkWidget *win); |
| 14286 | 34 | |
| 35 | /* Misc */ | |
| 36 | void gtkwgaim_notify_uri(const char *uri); | |
| 37 | ||
| 38 | /* init / cleanup */ | |
| 39 | void gtkwgaim_init(HINSTANCE); | |
| 40 | void gtkwgaim_cleanup(void); | |
| 41 | ||
| 42 | #endif /* _WIN32DEP_H_ */ | |
| 43 |