Lines Matching refs:lpgw

167     LPGW lpgw;  in WinExit()  local
180 for (lpgw = listgraphs; lpgw != NULL; lpgw = lpgw->next) { in WinExit()
181 if (GraphHasWindow(lpgw)) in WinExit()
182 GraphClose(lpgw); in WinExit()
1348 LPGW lpgw = listgraphs; in win_raise_terminal_window() local
1349 while ((lpgw != NULL) && (lpgw->Id != id)) in win_raise_terminal_window()
1350 lpgw = lpgw->next; in win_raise_terminal_window()
1351 if (lpgw != NULL) { in win_raise_terminal_window()
1352 if (IsIconic(lpgw->hWndGraph)) in win_raise_terminal_window()
1353 ShowWindow(lpgw->hWndGraph, SW_SHOWNORMAL); in win_raise_terminal_window()
1354 BringWindowToTop(lpgw->hWndGraph); in win_raise_terminal_window()
1362 LPGW lpgw = listgraphs; in win_raise_terminal_group() local
1363 while (lpgw != NULL) { in win_raise_terminal_group()
1364 if (IsIconic(lpgw->hWndGraph)) in win_raise_terminal_group()
1365 ShowWindow(lpgw->hWndGraph, SW_SHOWNORMAL); in win_raise_terminal_group()
1366 BringWindowToTop(lpgw->hWndGraph); in win_raise_terminal_group()
1367 lpgw = lpgw->next; in win_raise_terminal_group()
1375 LPGW lpgw = listgraphs; in win_lower_terminal_window() local
1376 while ((lpgw != NULL) && (lpgw->Id != id)) in win_lower_terminal_window()
1377 lpgw = lpgw->next; in win_lower_terminal_window()
1378 if (lpgw != NULL) in win_lower_terminal_window()
1379 SetWindowPos(lpgw->hWndGraph, HWND_BOTTOM, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE); in win_lower_terminal_window()
1386 LPGW lpgw = listgraphs; in win_lower_terminal_group() local
1387 while (lpgw != NULL) { in win_lower_terminal_group()
1388 SetWindowPos(lpgw->hWndGraph, HWND_BOTTOM, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE); in win_lower_terminal_group()
1389 lpgw = lpgw->next; in win_lower_terminal_group()
1398 LPGW lpgw; in WinWindowOpened() local
1400 lpgw = listgraphs; in WinWindowOpened()
1401 while (lpgw != NULL) { in WinWindowOpened()
1402 if (GraphHasWindow(lpgw)) in WinWindowOpened()
1404 lpgw = lpgw->next; in WinWindowOpened()