pub unsafe fn SetWindowPos<P0, P1>(
    hwnd: P0,
    hwndinsertafter: P1,
    x: i32,
    y: i32,
    cx: i32,
    cy: i32,
    uflags: SET_WINDOW_POS_FLAGS
) -> Result<()>
where P0: IntoParam<HWND>, P1: IntoParam<HWND>,