SetBrushOrgEx method

int SetBrushOrgEx(
  1. Pointer<HDC__> hdc,
  2. int x,
  3. int y,
  4. Pointer<POINT> lppt,
)

Implementation

int SetBrushOrgEx(
  ffi.Pointer<HDC__> hdc,
  int x,
  int y,
  ffi.Pointer<POINT> lppt,
) {
  return _SetBrushOrgEx(
    hdc,
    x,
    y,
    lppt,
  );
}