SetWindowPos method

int SetWindowPos(
  1. Pointer<HWND__> hWnd,
  2. Pointer<HWND__> hWndInsertAfter,
  3. int X,
  4. int Y,
  5. int cx,
  6. int cy,
  7. int uFlags,
)

Implementation

int SetWindowPos(
  ffi.Pointer<HWND__> hWnd,
  ffi.Pointer<HWND__> hWndInsertAfter,
  int X,
  int Y,
  int cx,
  int cy,
  int uFlags,
) {
  return _SetWindowPos(
    hWnd,
    hWndInsertAfter,
    X,
    Y,
    cx,
    cy,
    uFlags,
  );
}