SetWindowLongW method
Implementation
int SetWindowLongW(
ffi.Pointer<HWND__> hWnd,
int nIndex,
int dwNewLong,
) {
return (_SetWindowLongW ??=
_dylib.lookupFunction<_c_SetWindowLongW, _dart_SetWindowLongW>(
'SetWindowLongW'))(
hWnd,
nIndex,
dwNewLong,
);
}