mirror of
https://github.com/reactos/reactos.git
synced 2025-01-11 16:51:06 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
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 */
|