C ++ sets cursor size over 32

im trying to set the cursor. The width and height of the cursor is greater than 32 pixels. but it just reduces it to 32 pixels when I install it.
any idea?

+3
source share
1 answer

If you use the function LoadCursor, then I think that you will always scale to the standard size.

Try using LoadImagewith IMAGE_CURSOR, the desired size (0,0) and not using LR_DEFAULTSIZE.

+4
source

Source: https://habr.com/ru/post/1761397/


All Articles