mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
c16ad873a6
svn path=/branches/reactos-yarotows/; revision=46279
22 lines
550 B
C
22 lines
550 B
C
/* $Id$
|
|
*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS Win32k subsystem
|
|
* PURPOSE: Visibility computations interface definition
|
|
* FILE: include/win32k/vis.h
|
|
* PROGRAMMER: Ge van Geldorp (ge@gse.nl)
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <include/window.h>
|
|
|
|
HRGN FASTCALL
|
|
VIS_ComputeVisibleRegion(PWINDOW_OBJECT Window, BOOLEAN ClientArea,
|
|
BOOLEAN ClipChildren, BOOLEAN ClipSiblings);
|
|
|
|
VOID FASTCALL
|
|
co_VIS_WindowLayoutChanged(PWINDOW_OBJECT Window, HRGN UncoveredRgn);
|
|
|
|
/* EOF */
|