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(
    hWnd,
    Msg,
    wParam,
    lParam,
  );
}