Mercurial > pidgin
view src/win32/win32dep.h @ 3833:5ae43f0eeba3
[gaim-migrate @ 3982]
modified the todo to reflect faceprint's verification that the option to not
send typing notification works for yahoo as well.
adding in a .todo file for devtodo. the TODO file is still the official
todo, in part because i'm the only one using devtodo as yet and in part
because there's far more in TODO than in .todo as yet.
with .todo, i'm thinking that the discussion section will be a single item
with children, i don't see how else to do it.
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Wed, 30 Oct 2002 16:56:25 +0000 |
parents | 813304a57f88 |
children | 41e7544a9c67 |
line wrap: on
line source
/* * win32dep.h */ #ifndef _WIN32DEP_H_ #define _WIN32DEP_H_ #include <winsock.h> #include <gdk/gdkevents.h> #include "winerror.h" #include "libc_interface.h" /* * PROTOS */ /* win32dep.c */ extern char* wgaim_install_dir(void); extern char* wgaim_lib_dir(void); extern char* wgaim_locale_dir(void); extern GdkFilterReturn wgaim_window_filter(GdkXEvent *xevent, GdkEvent *event, gpointer data); extern void wgaim_init(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_ */