SetClassLongW method

int SetClassLongW(
  1. Pointer<HWND__> hWnd,
  2. int nIndex,
  3. int dwNewLong
)

Implementation

int SetClassLongW(
  ffi.Pointer<HWND__> hWnd,
  int nIndex,
  int dwNewLong,
) {
  return (_SetClassLongW ??=
      _dylib.lookupFunction<_c_SetClassLongW, _dart_SetClassLongW>(
          'SetClassLongW'))(
    hWnd,
    nIndex,
    dwNewLong,
  );
}