SetWindowOrgEx method
Implementation
int SetWindowOrgEx(
ffi.Pointer<HDC__> hdc,
int x,
int y,
ffi.Pointer<LPPOINT> lppt,
) {
return (_SetWindowOrgEx ??=
_dylib.lookupFunction<_c_SetWindowOrgEx, _dart_SetWindowOrgEx>(
'SetWindowOrgEx'))(
hdc,
x,
y,
lppt,
);
}