Re: gdi32: Do not allow to create too large device dependent bitmaps like Windows does
15 Jan
2008
15 Jan
'08
10:33 a.m.
Dmitry Timoshkov wrote:
+ SetLastError(0xdeadbeef); + hbmp = CreateBitmap(0x7ffffff, 9, 1, 1, NULL); + ok(!hbmp, "CreateBitmap should fail\n"); + ok(GetLastError() == ERROR_NOT_ENOUGH_MEMORY, + "expected ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
The string here doesn't match the test. -- Rob Shearman
6550
Age (days ago)
6550
Last active (days ago)
0 comments
1 participants
participants (1)
-
Robert Shearman