SendNotifyMessageW method

int SendNotifyMessageW(
  1. Pointer<HWND__> hWnd,
  2. int Msg,
  3. int wParam,
  4. int lParam,
)

Implementation

int SendNotifyMessageW(
  ffi.Pointer<HWND__> hWnd,
  int Msg,
  int wParam,
  int lParam,
) {
  return (_SendNotifyMessageW ??=
      _dylib.lookupFunction<_c_SendNotifyMessageW, _dart_SendNotifyMessageW>(
          'SendNotifyMessageW'))(
    hWnd,
    Msg,
    wParam,
    lParam,
  );
}