11 lines
184 B
C#
11 lines
184 B
C#
namespace Pilz.Win32.Native;
|
|
|
|
|
|
[Flags]
|
|
public enum WindowFromPointFlags
|
|
{
|
|
CWP_ALL = 0x0,
|
|
CWP_SKIPINVISIBLE = 0x1,
|
|
CWP_SKIPDISABLED = 0x2,
|
|
CWP_SKIPTRANSPARENT = 0x4
|
|
} |