CreateCursor function user32
int
CreateCursor(
- int hInst,
- int xHotSpot,
- int yHotSpot,
- int nWidth,
- int nHeight,
- Pointer<
NativeType> pvANDPlane, - Pointer<
NativeType> pvXORPlane,
Creates a monochrome cursor having the specified size, bit patterns, and hot spot.
HCURSOR CreateCursor(
[in, optional] HINSTANCE hInst,
[in] int xHotSpot,
[in] int yHotSpot,
[in] int nWidth,
[in] int nHeight,
[in] const VOID *pvANDPlane,
[in] const VOID *pvXORPlane
);
Implementation
int CreateCursor(
int hInst,
int xHotSpot,
int yHotSpot,
int nWidth,
int nHeight,
Pointer pvANDPlane,
Pointer pvXORPlane,
) => _CreateCursor(
hInst,
xHotSpot,
yHotSpot,
nWidth,
nHeight,
pvANDPlane,
pvXORPlane,
);