DrawTextW method

int DrawTextW(
  1. Pointer<HDC__> hdc,
  2. Pointer<Uint16> lpchText,
  3. int cchText,
  4. Pointer<RECT> lprc,
  5. int format,
)

Implementation

int DrawTextW(
  ffi.Pointer<HDC__> hdc,
  ffi.Pointer<ffi.Uint16> lpchText,
  int cchText,
  ffi.Pointer<RECT> lprc,
  int format,
) {
  return _DrawTextW(
    hdc,
    lpchText,
    cchText,
    lprc,
    format,
  );
}