SetSystemCursor method

int SetSystemCursor(
  1. Pointer<HICON__> hcur,
  2. int id
)

Implementation

int SetSystemCursor(
  ffi.Pointer<HICON__> hcur,
  int id,
) {
  return (_SetSystemCursor ??=
      _dylib.lookupFunction<_c_SetSystemCursor, _dart_SetSystemCursor>(
          'SetSystemCursor'))(
    hcur,
    id,
  );
}