Tue, 27 May 2003 03:38:52 +0000
[gaim-migrate @ 5937]
This is:
-AIM over OSCAR use Christian's new, kick ass
gaim_notify_email stuff for new mail notification. This
should be good, but it's kind of a pain to test. Let me
know if you have any problems
-Minor fix to the translation README
-2 minor changes to the doxygen of 2 major header files
(this means you'll have to recompile a lot of files :-) )
-If your global proxy setting is "No Proxy" and your global
proxy host is empty, but $http_proxy is set to something,
gaim used to switch your global proxy setting to "HTTP." It
no longer does this. This makes more sense to me. If you
disagree, please let me know--this is open to debate, and
what not. Also, the use of environmental proxy settings
will be changed a bit in the next day or two
| 4490 | 1 | /* |
| 2 | * win_aim.c | |
| 3 | * | |
| 4 | * Author: Herman Bloggs <hermanator12002@yahoo.com> | |
| 5 | * Date: June, 2002 | |
| 6 | * Description: Entry point for win32 gaim, and various win32 dependant | |
| 7 | * routines. | |
| 8 | */ | |
| 9 | #include <windows.h> | |
| 10 | #include <stdlib.h> | |
| 11 | ||
| 12 | /* | |
| 13 | * GLOBALS | |
| 14 | */ | |
| 15 | __declspec(dllimport) HINSTANCE gaimexe_hInstance; | |
| 16 | ||
| 17 | /* | |
| 18 | * LOCALS | |
| 19 | */ | |
| 20 | ||
| 21 | /* | |
| 22 | * PROTOTYPES | |
| 23 | */ | |
| 24 | extern int gaim_main( int, char** ); | |
| 25 | ||
| 26 | ||
| 27 | #ifdef __GNUC__ | |
| 28 | # ifndef _stdcall | |
| 29 | # define _stdcall __attribute__((stdcall)) | |
| 30 | # endif | |
| 31 | #endif | |
| 32 | ||
| 33 | int _stdcall | |
| 34 | WinMain (struct HINSTANCE__ *hInstance, | |
| 35 | struct HINSTANCE__ *hPrevInstance, | |
| 36 | char *lpszCmdLine, | |
| 37 | int nCmdShow) | |
| 38 | { | |
| 39 | gaimexe_hInstance = hInstance; | |
| 40 | return gaim_main (__argc, __argv); | |
| 41 | } | |
| 42 |