comparison pidgin/win32/gtkwin32dep.h @ 15374:5fe8042783c1

Rename gtk/ and libgaim/ to pidgin/ and libpurple/
author Sean Egan <seanegan@gmail.com>
date Sat, 20 Jan 2007 02:32:10 +0000
parents
children 75ffc646647f
comparison
equal deleted inserted replaced
15373:f79e0f4df793 15374:5fe8042783c1
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 #include <windows.h>
26 #include <gtk/gtk.h>
27 #include "conversation.h"
28
29 HINSTANCE gtkwgaim_hinstance(void);
30
31 /* Utility */
32 int gtkwgaim_gz_decompress(const char* in, const char* out);
33 int gtkwgaim_gz_untar(const char* filename, const char* destdir);
34
35 /* Misc */
36 void gtkwgaim_notify_uri(const char *uri);
37 void gtkwgaim_shell_execute(const char *target, const char *verb, const char *clazz);
38 void gtkwgaim_ensure_onscreen(GtkWidget *win);
39 void gtkwgaim_conv_blink(GaimConversation *conv, GaimMessageFlags flags);
40 void gtkwgaim_window_flash(GtkWindow *window, gboolean flash);
41
42 /* init / cleanup */
43 void gtkwgaim_init(HINSTANCE);
44 void gtkwgaim_post_init(void);
45 void gtkwgaim_cleanup(void);
46
47 #endif /* _WIN32DEP_H_ */
48