ShowCursor function Null safety user32
- int bShow
Displays or hides the cursor.
int ShowCursor(
BOOL bShow
);
Implementation
int ShowCursor(int bShow) {
final _ShowCursor = _user32.lookupFunction<Int32 Function(Int32 bShow),
int Function(int bShow)>('ShowCursor');
return _ShowCursor(bShow);
}