"William Poetra Yoga H" williampoetra@yahoo.com wrote:
This patch is for filling the caption bar (a.k.a. title bar) with gradient colors, like in Win98/WinME/Win2K/WinXP.
I've modified nonclient.c too heavily (work on other parts of it), so this patch may generate offsets or things like that. Please comment on wine-devel. Thanks.
-IMPORTS = gdi32 advapi32 kernel32 ntdll +IMPORTS = msimg32 gdi32 advapi32 kernel32 ntdll
Use gdi32.GdiGradientFill instead of msimg32.GradientFill, the latter one is forwarded to gdi32 anyway.
--- Dmitry Timoshkov dmitry@baikal.ru wrote:
-IMPORTS = gdi32 advapi32 kernel32 ntdll +IMPORTS = msimg32 gdi32 advapi32 kernel32 ntdll
Use gdi32.GdiGradientFill instead of msimg32.GradientFill, the latter one is forwarded to gdi32 anyway.
Well, I can't find GdiGradientFill by searching at MSDN. I found some links through Google, though. Is it a deprecated, old API? If that's the case, I think we'd better link to msimg32.
Anyway, I'll turn in the patch with gdi32.
__________________________________ Do you Yahoo!? Yahoo! Mail Address AutoComplete - You start. We finish. http://promotions.yahoo.com/new_mail
Hi,
On Wed, Oct 27, 2004 at 04:42:22AM -0700, William Poetra Yoga H wrote:
Well, I can't find GdiGradientFill by searching at MSDN. I found some links through Google, though. Is it a deprecated, old API? If that's the case, I think we'd better link to msimg32.
It might be a deprecated API, but it doesn't matter since you can bet that they won't throw that export away. Or at least if they do, then there's still no reason for us to throw it away, since there must be some Windows programs depending on that export.
Anyway, I'll turn in the patch with gdi32.
Good.
"William Poetra Yoga H" williampoetra@yahoo.com wrote:
Well, I can't find GdiGradientFill by searching at MSDN. I found some links through Google, though. Is it a deprecated, old API? If that's the case, I think we'd better link to msimg32.
GdiGradientFill is the gdi32 entry point to which msimg32's GradientFill is forwarded. "Deprecated" is the Microsoft term which they usually use to force developers to go the way Microsoft wants and has nothing to do with reality and especially with Wine development.