Mercurial > pidgin
annotate src/win_gaim.c @ 4755:54fbd9769677
[gaim-migrate @ 5072]
This fixes the debug window. It's probably not an ideal fix, but it
works. Some kind of core/ui splittage here would be nice.
I also made the gtk convo destroy function remove the timer to redraw
animated buddy icons, if it exists. This doesn't really affect anything,
since the redraw function checks to make sure the convo exists, but
it's probably more better this way.
Also, I meant to misspell "definitely." Really. I did. You don't
believe me? It's ok, I wouldn't believe me either.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 13 Mar 2003 22:57:58 +0000 |
parents | 70b892694e0b |
children | 5aeba37b303c |
rev | line source |
---|---|
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 |