- Repaint the parent window in the non-paintself case.
[reactos.git] / reactos / subsys / win32k / include / vis.h
1 /* $Id: vis.h,v 1.2 2003/08/02 19:56:19 dwelch Exp $
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS Win32k subsystem
5 * PURPOSE: Visibility computations interface definition
6 * FILE: include/win32k/vis.h
7 * PROGRAMMER: Ge van Geldorp (ge@gse.nl)
8 *
9 */
10
11 #ifndef _WIN32K_VIS_H
12 #define _WIN32K_VIS_H
13
14 #include <internal/ex.h>
15 #include <include/window.h>
16
17 HRGN FASTCALL
18 VIS_ComputeVisibleRegion(PDESKTOP_OBJECT Desktop, PWINDOW_OBJECT Window,
19 BOOLEAN ClientArea, BOOLEAN ClipChildren,
20 BOOLEAN ClipSiblings);
21
22 VOID FASTCALL
23 VIS_WindowLayoutChanged(PDESKTOP_OBJECT Desktop, PWINDOW_OBJECT Window,
24 HRGN UncoveredRgn);
25 VOID FASTCALL
26 VIS_RepaintDesktop(HWND Desktop, HRGN RepaintRgn);
27
28 #endif /* ! defined(_WIN32K_VIS_H) */
29
30 /* EOF */
31