OnTopReplica/OnTopReplica/Native/WMSZ.cs
2010-09-19 23:47:47 +02:00

16 lines
392 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OnTopReplica.Native {
/// <summary>
/// Native Win32 sizing codes (used by WM_SIZING message).
/// </summary>
static class WMSZ {
public const int LEFT = 1;
public const int RIGHT = 2;
public const int TOP = 3;
public const int BOTTOM = 6;
}
}