comparison gtk/win32/gtkwin32dep.h @ 14224:ab8a105eff62

[gaim-migrate @ 16905] First step of getting wingaim working again. libgaim and gtk are compiling. The protocols aren't compiling yet. There are a number of things that are compiling, but should be cleaned up. committer: Tailor Script <tailor@pidgin.im>
author Daniel Atallah <daniel.atallah@gmail.com>
date Sun, 20 Aug 2006 16:49:37 +0000
parents
children 333989477bcd
comparison
equal deleted inserted replaced
14223:7c560c01b8f9 14224:ab8a105eff62
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_
25
26 HINSTANCE gtkwgaim_hinstance(void);
27
28 /* Utility */
29 int gtkwgaim_gz_decompress(const char* in, const char* out);
30 int gtkwgaim_gz_untar(const char* filename, const char* destdir);
31
32 /* Misc */
33 void gtkwgaim_notify_uri(const char *uri);
34
35 /* init / cleanup */
36 void gtkwgaim_init(HINSTANCE);
37 void gtkwgaim_cleanup(void);
38
39 #endif /* _WIN32DEP_H_ */
40