The CreateCursor function creates a cursor having the specified size, bit patterns, and hot spot.
HCURSOR CreateCursor(
HINSTANCE hInst, |
// handle to application instance |
int xHotSpot, |
// horizontal position of hot spot |
int yHotSpot, |
// vertical position of hot spot |
int nWidth, |
// cursor width |
int nHeight, |
// cursor height |
CONST VOID *pvANDPlane, |
// pointer to AND bitmask array |
CONST VOID *pvXORPlane |
// pointer to XOR bitmask array |
); |
If the function succeeds, the return value identifies the cursor.
If the function fails, the return value is NULL. To get extended error information, call GetLastError.
The nWidth and nHeight parameters must specify a width and height that are supported by the current display driver, because the system cannot create cursors of other sizes. To determine the width and height supported by the display driver, use the GetSystemMetrics function, specifying the SM_CXCURSOR or SM_CYCURSOR value.
Before closing, an application must call the DestroyCursor function to free any system resources associated with the cursor.
CreateIcon, DestroyCursor, GetModuleHandle, GetSystemMetrics, SetCursor
file: /Techref/os/win/api/win32/func/src/f08_10.htm, 4KB, , updated: 2001/6/24 04:12, local time: 2024/11/7 21:35,
18.119.129.77:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/os/win/api/win32/func/src/f08_10.htm"> CreateCursor</A> |
Did you find what you needed? |