Mercurial > pidgin
view src/win32/win32dep.h @ 4975:871b6166698f
[gaim-migrate @ 5310]
Danilo Segan (dsegan) writes:
"Updated Serbian translation of Gaim-CVS from April 2, 2003.
* intltool-update, and translate everything changed
* corrected plural-forms
* other updates
A patch to configure.ac is neccessary to add "sr" to
the language list (variable ALL_LINGUAS).
It is now tested and works find with just executing
./autogen.sh for CVS versions.
I hope it will be integrated, and I plan to update
every week or so. It will be much simpler if it gets
integrated into CVS tree. "
i added sr to the language list, after a hint from robot101.
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Thu, 03 Apr 2003 13:41:22 +0000 |
parents | 75f75ef235e4 |
children | 89a5b0e23ea4 |
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 "wgaimerror.h" #include "libc_interface.h" #include "systray.h" /* * PROTOS */ /** ** win32dep.c **/ /* Misc */ FARPROC wgaim_find_and_loadproc(char*, char*); HINSTANCE wgaim_hinstance(void); extern void wgaim_im_blink(GtkWidget*); extern char* wgaim_escape_dirsep(char*); /* 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() /* Temp solution for gtk_window_get_pos & gtk_window_move conflict */ #define gtk_window_move( window, x, y ) \ wgaim_gtk_window_move( ## window ##, ## x ##, ## y ## ) /* * 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_ */