comparison src/server.c @ 3971:15b0d5b2de4d

[gaim-migrate @ 4155] win32: serv_got_im causes conv window to flash when not in focus. This uses FlashWindowEx, which is only supported on Win98+ and WinNT5+. For the time being this will cause a runtime error on Windows versions not supported. Runtime Winver check will resolve this. committer: Tailor Script <tailor@pidgin.im>
author Herman Bloggs <hermanator12002@yahoo.com>
date Sat, 16 Nov 2002 01:12:30 +0000
parents 30f52e7afd1d
children f118d61fb89a
comparison
equal deleted inserted replaced
3970:3bc436a24548 3971:15b0d5b2de4d
769 } 769 }
770 770
771 set_convo_name(cnv, name); 771 set_convo_name(cnv, name);
772 772
773 write_to_conv(cnv, message, away | WFLAG_RECV, NULL, mtime, len); 773 write_to_conv(cnv, message, away | WFLAG_RECV, NULL, mtime, len);
774 #ifdef _WIN32
775 wgaim_im_blink(cnv->window);
776 #endif
774 } 777 }
775 } 778 }
776 plugin_event(event_im_displayed_rcvd, gc, name, message, flags, mtime); 779 plugin_event(event_im_displayed_rcvd, gc, name, message, flags, mtime);
777 g_free(name); 780 g_free(name);
778 g_free(message); 781 g_free(message);