Lines Matching defs:ii
164 ICONINFO ii;
366 ii.fIcon = FALSE;
367 ii.xHotspot = pCursor->bits->xhot;
368 ii.yHotspot = pCursor->bits->yhot;
369 ii.hbmMask = hAnd;
370 ii.hbmColor = hXor;
371 hCursor = (HCURSOR) CreateIconIndirect( &ii );
377 if (GetIconInfo(hCursor, &ii))
379 if (ii.fIcon)
385 ii.fIcon = FALSE;
386 ii.xHotspot = pCursor->bits->xhot;
387 ii.yHotspot = pCursor->bits->yhot;
388 hCursor = (HCURSOR) CreateIconIndirect( &ii );
394 if (ii.hbmMask)
395 DeleteObject(ii.hbmMask);
396 if (ii.hbmColor)
397 DeleteObject(ii.hbmColor);