OnTopReplica/src/OnTopReplica/Native/HT.cs

15 lines
328 B
C#
Raw Normal View History

2018-04-11 04:52:40 +12:00
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;
}
}