///
/// Copyright © 2003-2008 JetBrains s.r.o.
/// You may distribute under the terms of the GNU General Public License, as published by the Free Software Foundation, version 2 (see License.txt in the repository root folder).
///
namespace JetBrains.Interop.WinApi
{
///
/// Specifies the operation to be performed over the regions.
///
public enum CombineRgnStyles
{
///
/// The new clipping region combines the overlapping areas of the current clipping region and the region identified by hrgn.
///
RGN_AND = 1,
///
/// The new clipping region is a copy of the region identified by hrgn. This is identical to SelectClipRgn. If the region identified by hrgn is NULL, the new clipping region is the default clipping region (the default clipping region is a null region).
///
RGN_OR = 2,
///
/// The new clipping region combines the areas of the current clipping region with those areas excluded from the region identified by hrgn.
///
RGN_XOR = 3,
///
/// The new clipping region combines the current clipping region and the region identified by hrgn.
///
RGN_DIFF = 4,
///
/// The new clipping region combines the current clipping region and the region identified by hrgn but excludes any overlapping areas.
///
RGN_COPY = 5,
///
/// Same as .
///
RGN_MIN = RGN_AND,
///
/// Same as .
///
RGN_MAX = RGN_COPY,
}
}