Re: [PATCH] uxtheme: support images in GetThemeBackgroundRegion
24 Feb
2015
24 Feb
'15
3:02 p.m.
Mark Harmstone <hellas(a)burntcomma.com> writes:
+ dc = CreateCompatibleDC(NULL); + if (!dc) { + WARN("CreateCompatibleDC failed\n"); + DeleteObject(hrgn); + return E_FAIL; + } + + bmp = CreateBitmap(rect->right - rect->left, rect->bottom - rect->top, 1, 32, NULL);
You need a DIB for this, not a device bitmap. -- Alexandre Julliard julliard(a)winehq.org
4034
Age (days ago)
4034
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard