///
/// 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
{
///
/// Flags for the function.
///
public enum GetAncestorFlags : uint
{
///
/// Retrieves the parent window. This does not include the owner, as it does with the GetParent function.
///
GA_PARENT = 1,
///
/// Retrieves the root window by walking the chain of parent windows.
///
GA_ROOT = 2,
///
/// Retrieves the owned root window by walking the chain of parent and owner windows returned by GetParent.
///
GA_ROOTOWNER = 3,
}
}