OnTopReplica/OnTopReplica/Native/HT.cs
2013-05-03 18:16:42 +02:00

15 lines
342 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OnTopReplica.Native {
/// <summary>
/// Native Win32 Hit Testing codes.
/// </summary>
static class HT {
public const int TRANSPARENT = -1;
public const int CLIENT = 1;
public const int CAPTION = 2;
}
}