If nWidth or nHeight is zero, CreateBitmap returns the handle to a 1- by 1-pixel, monochrome bitmap.

svn path=/trunk/; revision=8276
This commit is contained in:
Royce Mitchell III
2004-02-20 07:45:58 +00:00
parent 1355d672b4
commit a7e30599ea
+3 -2
View File
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: bitmaps.c,v 1.55 2004/02/19 21:12:10 weiden Exp $ */
/* $Id: bitmaps.c,v 1.56 2004/02/20 07:45:58 royce Exp $ */
#undef WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <stdlib.h>
@@ -249,7 +249,8 @@ HBITMAP STDCALL NtGdiCreateBitmap(INT Width,
/* Check parameters */
if (!Height || !Width)
{
return 0;
Width = 1;
Height = 1;
}
if (Planes != 1)
{