Lines Matching refs:ii
269 ICONINFO ii = {TRUE};
283 ii.hbmColor = CreateDIBSection(hdc, (BITMAPINFO*)&bmh,
286 ii.hbmMask = CreateBitmap(width, height, 1, 1, NULL);
292 result = CreateIconIndirect(&ii);
294 DeleteObject(ii.hbmColor);
295 DeleteObject(ii.hbmMask);
309 ICONINFO ii = {TRUE};
314 ii.hbmColor = CreateCompatibleBitmap(hdc, width, height);
315 ii.hbmMask = CreateCompatibleBitmap(hdc, width, height);
317 SelectObject(xorDC, ii.hbmColor);
318 SelectObject(andDC, ii.hbmMask);
337 result = CreateIconIndirect(&ii);
339 DeleteObject(ii.hbmColor);
340 DeleteObject(ii.hbmMask );
413 ICONINFO ii;
502 ii.fIcon = TRUE;
503 ii.xHotspot = 0; /* ignored */
504 ii.yHotspot = 0; /* ignored */
507 ii.hbmMask = CreateBitmap (iconSize, iconSize, planes, 1, mask);
510 ii.hbmColor = CreateBitmap (iconSize, iconSize, planes, bpp, image);
513 hIcon = CreateIconIndirect (&ii);
516 DeleteObject (ii.hbmMask);
517 DeleteObject (ii.hbmColor);