Lines Matching refs:pRLWinPriv
362 win32RootlessWindowPtr pRLWinPriv; in ProcWindowsWMFrameDraw() local
379 pRLWinPriv = (win32RootlessWindowPtr) RootlessFrameForWindow(pWin, TRUE); in ProcWindowsWMFrameDraw()
380 if (pRLWinPriv == 0) in ProcWindowsWMFrameDraw()
385 pRLWinPriv->hWnd, (int) stuff->frame_style, in ProcWindowsWMFrameDraw()
403 if (!SetWindowLongPtr(pRLWinPriv->hWnd, GWL_EXSTYLE, stuff->frame_style_ex)) { in ProcWindowsWMFrameDraw()
408 if (!SetWindowLongPtr(pRLWinPriv->hWnd, GWL_STYLE, stuff->frame_style)) { in ProcWindowsWMFrameDraw()
413 if (!SetWindowPos(pRLWinPriv->hWnd, NULL, in ProcWindowsWMFrameDraw()
419 if (!IsWindowVisible(pRLWinPriv->hWnd)) in ProcWindowsWMFrameDraw()
424 ShowWindow(pRLWinPriv->hWnd, nCmdShow); in ProcWindowsWMFrameDraw()
433 winMWExtWMReshapeFrame(pRLWinPriv, &newShape); in ProcWindowsWMFrameDraw()
451 win32RootlessWindowPtr pRLWinPriv; in ProcWindowsWMFrameSetTitle() local
481 pRLWinPriv = (win32RootlessWindowPtr) RootlessFrameForWindow(pWin, FALSE); in ProcWindowsWMFrameSetTitle()
483 if (pRLWinPriv == 0) { in ProcWindowsWMFrameSetTitle()
489 SetWindowText(pRLWinPriv->hWnd, title_bytes); in ProcWindowsWMFrameSetTitle()