Lines Matching defs:ii
157 ICONINFO ii;
364 ii.fIcon = FALSE;
365 ii.xHotspot = pCursor->bits->xhot;
366 ii.yHotspot = pCursor->bits->yhot;
367 ii.hbmMask = hAnd;
368 ii.hbmColor = hXor;
369 hCursor = (HCURSOR) CreateIconIndirect(&ii);
374 if (GetIconInfo(hCursor, &ii)) {
375 if (ii.fIcon) {
381 ii.fIcon = FALSE;
382 ii.xHotspot = pCursor->bits->xhot;
383 ii.yHotspot = pCursor->bits->yhot;
384 hCursor = (HCURSOR) CreateIconIndirect(&ii);
391 if (ii.hbmMask)
392 DeleteObject(ii.hbmMask);
393 if (ii.hbmColor)
394 DeleteObject(ii.hbmColor);