MessageBoxExW method

int MessageBoxExW(
  1. Pointer<HWND__> hWnd,
  2. Pointer<Uint16> lpText,
  3. Pointer<Uint16> lpCaption,
  4. int uType,
  5. int wLanguageId,
)

Implementation

int MessageBoxExW(
  ffi.Pointer<HWND__> hWnd,
  ffi.Pointer<ffi.Uint16> lpText,
  ffi.Pointer<ffi.Uint16> lpCaption,
  int uType,
  int wLanguageId,
) {
  return _MessageBoxExW(
    hWnd,
    lpText,
    lpCaption,
    uType,
    wLanguageId,
  );
}