Lines Matching defs:info
396 /* Get info from the bitmap */
469 ICONINFO info;
477 info.hbmMask = NULL;
478 info.hbmColor = NULL;
490 if (!GetIconInfo(icon, &info)) {
491 CURSOR_ERROR("Could not get icon info");
499 pos.x = ci.ptScreenPos.x - clip_rect.left - info.xHotspot - rect.left;
500 pos.y = ci.ptScreenPos.y - clip_rect.top - info.yHotspot - rect.top;
511 pos.x = ci.ptScreenPos.x * desktophorzres / horzres - clip_rect.left - info.xHotspot;
512 pos.y = ci.ptScreenPos.y * desktopvertres / vertres - clip_rect.top - info.yHotspot;
525 if (info.hbmMask)
526 DeleteObject(info.hbmMask);
527 if (info.hbmColor)
528 DeleteObject(info.hbmColor);
532 CURSOR_ERROR("Couldn't get cursor info");