CreateCursor method
Implementation
ffi.Pointer<HICON__> CreateCursor(
ffi.Pointer<HINSTANCE__> hInst,
int xHotSpot,
int yHotSpot,
int nWidth,
int nHeight,
ffi.Pointer<ffi.Void> pvANDPlane,
ffi.Pointer<ffi.Void> pvXORPlane,
) {
return (_CreateCursor ??= _dylib
.lookupFunction<_c_CreateCursor, _dart_CreateCursor>('CreateCursor'))(
hInst,
xHotSpot,
yHotSpot,
nWidth,
nHeight,
pvANDPlane,
pvXORPlane,
);
}