Mercurial > pidgin
view src/win32/win32dep.h @ 4033:8e139d7ff0b2
[gaim-migrate @ 4239]
compile away.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Tue, 03 Dec 2002 02:13:53 +0000 |
parents | a997156437b6 |
children | a3ec0146c73e |
line wrap: on
line source
/* * win32dep.h */ #ifndef _WIN32DEP_H_ #define _WIN32DEP_H_ #include <winsock.h> #include <gtk/gtk.h> #include <gdk/gdkevents.h> #include "winerror.h" #include "libc_interface.h" #include "systray.h" #include "winprefs.h" /* * PROTOS */ /** ** win32dep.c **/ /* Misc */ HINSTANCE wgaim_hinstance(void); extern void wgaim_im_blink(GtkWidget*); extern GtkWidget *wgaim_wintrans_slider(GtkWidget*); extern void wgaim_set_wintrans(GtkWidget*, int); extern void wgaim_set_imalpha(int); extern int wgaim_get_imalpha(); extern int wgaim_has_transparency(); /* Determine Gaim paths */ extern char* wgaim_install_dir(void); extern char* wgaim_lib_dir(void); extern char* wgaim_locale_dir(void); /* init / cleanup */ extern void wgaim_init(void); extern void wgaim_cleanup(void); /* * MACROS */ /* * Gaim specific */ #define DATADIR wgaim_install_dir() #define LIBDIR wgaim_lib_dir() #define LOCALEDIR wgaim_locale_dir() /* * Gtk specific */ /* Needed for accessing global variables outside the current module */ #ifdef G_MODULE_IMPORT #undef G_MODULE_IMPORT #endif #define G_MODULE_IMPORT __declspec(dllimport) #endif /* _WIN32DEP_H_ */