SetWindowExtEx method

int SetWindowExtEx(
  1. Pointer<HDC__> hdc,
  2. int x,
  3. int y,
  4. Pointer<SIZE> lpsz,
)

Implementation

int SetWindowExtEx(
  ffi.Pointer<HDC__> hdc,
  int x,
  int y,
  ffi.Pointer<SIZE> lpsz,
) {
  return _SetWindowExtEx(
    hdc,
    x,
    y,
    lpsz,
  );
}