Lines Matching refs:ii
244 ICONINFO ii;
258 ii.fIcon = TRUE;
259 ii.xHotspot = 0; /* ignored */
260 ii.yHotspot = 0; /* ignored */
261 ii.hbmColor = CreateDIBSection(hdc, (BITMAPINFO *) &bmh,
266 if (!ii.hbmColor)
269 ii.hbmMask = CreateBitmap(width, height, 1, 1, NULL);
275 result = CreateIconIndirect(&ii);
277 DeleteObject(ii.hbmColor);
278 DeleteObject(ii.hbmMask);
292 ICONINFO ii;
298 ii.fIcon = TRUE;
299 ii.xHotspot = 0; /* ignored */
300 ii.yHotspot = 0; /* ignored */
301 ii.hbmColor = CreateCompatibleBitmap(hdc, width, height);
302 ii.hbmMask = CreateCompatibleBitmap(hdc, width, height);
304 SelectObject(xorDC, ii.hbmColor);
305 SelectObject(andDC, ii.hbmMask);
325 result = CreateIconIndirect(&ii);
327 DeleteObject(ii.hbmColor);
328 DeleteObject(ii.hbmMask);
382 ICONINFO ii;
543 ii.fIcon = TRUE;
544 ii.xHotspot = 0; /* ignored */
545 ii.yHotspot = 0; /* ignored */
548 ii.hbmMask =
552 ii.hbmColor =
556 hIcon = CreateIconIndirect(&ii);
559 DeleteObject(ii.hbmMask);
560 DeleteObject(ii.hbmColor);